React for Claude AI API
(claude.ai)
- custom modes
- can remember chat history
- unlimited use
- crawled version
Task:
Do 10+ reaction for source code
(claude.ai)
- custom modes
- can remember chat history
- unlimited use
- crawled version
Task:
Do 10+ reaction for source code
β€41π5π1
claude.py
5.2 KB
Claude AI
~ An AI Chat Bot used by Discord
> Install requests Package:
Run:
How-To use:
All the steps mentioned in file
If the sessionkey gets expired, you can get it from claude.ai from cookies
>.< Drop your site for reverse engineering at @BiswaX
~ An AI Chat Bot used by Discord
> Install requests Package:
pip install curl-cffiRun:
python claude.pyHow-To use:
All the steps mentioned in file
If the sessionkey gets expired, you can get it from claude.ai from cookies
>.< Drop your site for reverse engineering at @BiswaX
β€12π2π1
AI CHATBOT WITH ChatGPT 4 MODEL
> https://app.myshell.ai/chat?from=workshop
> https://ava-ai-ef611.web.app/
React love β€οΈ if you want their API!
I will do reverse engineering on these sites
Drop more sites if you have at @BiswaX
> https://app.myshell.ai/chat?from=workshop
> https://ava-ai-ef611.web.app/
React love β€οΈ if you want their API!
I will do reverse engineering on these sites
Drop more sites if you have at @BiswaX
β€41π3π₯3π2
Paid Project: Seeking App Developer
Looking for an experienced App Developer to join our team. If you have a background in similar app types like Uber and Ola,
Please DM @BiswaX for more details. Get paid to be a part of this exciting opportunity!
Get Paid!!
Looking for an experienced App Developer to join our team. If you have a background in similar app types like Uber and Ola,
Please DM @BiswaX for more details. Get paid to be a part of this exciting opportunity!
Get Paid!!
π₯49π47β€27π5
Free ChatGPT API
Github: Get Source
Github: Get Source
# follow @unrealcoder
# coded by @BiswaX
import requests
import secrets
import re
class GodGPT:
def init(self) -> None:
self.api_url = "https://gptgod.site/api/session/free/gpt3p5"
def generate_id(self, hex_id:int = 16, zfill:int = 32):
return {"id": secrets.token_hex(hex_id).zfill(zfill)}
def generate_text(self, prompt: str):
payload = {
**self.generate_id(),
"content": prompt
}
response = requests.get(self.api_url, params=payload)
convo = []
for data in response.iter_lines(chunk_size=None):
msg = re.findall(r'data:\s*"(.*)"', data.decode())
if msg:
convo.append(msg[0])
return "".join(convo)
bot = GodGPT()
print(bot.generate_text("how are you"))
π12β€3π₯1
(No smm shit, 100% python script written by @BiswaX)
Task: complete 10+ reaction on this post
Please open Telegram to view this post
VIEW IN TELEGRAM
π33β€21π₯13π2
Telegram themes.
You may like:
Good for mobile:
https://t.me/addtheme/hyperxd
Good for PC users:
https://t.me/addtheme/darkop
You may like:
Good for mobile:
https://t.me/addtheme/hyperxd
Good for PC users:
https://t.me/addtheme/darkop
Telegram
Hyper Black Blur (Win/Android Only)
π2π₯1
Gemini Pro Chat
https://geminiprochat.com/
Api powered by Gemini Pro (Googleβs new generative ai model)
Good for reverse engineering
https://geminiprochat.com/
Api powered by Gemini Pro (Googleβs new generative ai model)
Good for reverse engineering
Gprochat
Gemini Pro Chat
A Minimal web UI for GeminiPro Chat.
π5β€4π₯1
Forwarded from WeWantYou
This media is not supported in the widget
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
π42β€12π₯12π7
WeWantYou
Who won this giveaway show ss in comment section*
Happy New Year Lovely Coders!
https://t.me/UnrealCoder/90
Happy New Year Lovely Coders!
https://t.me/UnrealCoder/90
β€1
Simple ChatGPT API
import requests, re
def chatgpt(prompt):
url = "https://aigencycms.polartemplates.com/php/api.php"
data = {
"prompt": prompt,
"ai_id": 2
}
resp = requests.post(url, data=data)
convo = re.findall(r'content":"([^"]+)"', resp.text)
return "".join(convo)
print(chatgpt("write a python code to get even numbers from 1-20"))
π3
Forwarded from Code Like Pro
Recaptcha V3 Bypass Without Solver
import requests
import random
import json
import re
from urllib.parse import urlparse
from urllib.parse import unquote_plus
class RecapBypass:
def __init__(self, anchor_url:str) -> None:
self.anchor_url = anchor_url
def xform_parser(self, data: str) -> dict:
result = {}
for item in data.split('&'):
key, value = item.split('=', 1)
result[key] = unquote_plus(value)
return result
def captcha_bypass(self, siteKey:str = None):
r1 = requests.get(self.anchor_url).text
x = re.findall(r'id="recaptcha-token"\s*value="(.*?)"', r1)
if not x:
return {"error": "Parse Token Error"}
anchor_data = self.xform_parser(self.anchor_url.split("/anchor?")[1])
if not siteKey:
siteKey = "6Ld48NUZAAAAAGbJ2g2xzdAALwlRF6AwxzjThc4z"
url= f"https://www.google.com/recaptcha/api2/reload?k={siteKey}"
data = {
**anchor_data,
"reason":"q",
"c":x[0],
"chr":"",
"vh":"",
"bg":""
}
r = requests.post(url, data=data)
token = None
try:
token = str(r.text.split('"rresp","')[1].split('"')[0])
except:
return {"error":"Error while parsing response"}
return {"token" : token}
π₯5β€3
Recaptcha V2 Bypass
Github Source: Here
Example usage:
Github Source: Here
Example usage:
from playwright.sync_api import sync_playwright, Playwright
from recognizer.agents.playwright import SyncChallenger
def run(playwright: Playwright):
browser = playwright.chromium.launch()
page = browser.new_page()
challenger = SyncChallenger(page)
page.goto("https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox-explicit.php")
challenger.solve_recaptcha()
browser.close()
with sync_playwright() as playwright:
run(playwright)
π₯10β€1