Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
#!/usr/bin/env python3 # main.py - API Scan & Auto Connect Dual Bot import time import requests from dual import DualBot from prompt import debug_prompt, status_prompt def scan_apis(): """Scan semua API keys dan test functionality""" print("๐ Scanning API Keys...") apis_to_test = [ { "name": "Groq", "key": "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", "url": "https://api.groq.com/openai/v1/chat/completions", "method": "groq" }, { "name": "DeepSeek", "key": "sk-018cc05d3a574de68947e669673fdf65", "url": "https://api.deepseek.com/chat/completions", "method": "deepseek" }, { "name": "Gemini", "key": "AIzaSyDVoBSniv6CtvNZDPxvPNRPfRXWvj3304M", "url": "https://generativelanguage.googleapis.com/v1/models/gemini-2.0-flash:generateContent", "method": "gemini" } ] working_apis = [] for api in apis_to_test: print(f"๐งช Testing {api['name']}...") try: if test_api(api): print(f"โ {api['name']} - WORKING") working_apis.append(api['name']) else: print(f"โ {api['name']} - FAILED") except Exception as e: print(f"โ {api['name']} - ERROR: {e}") return working_apis def test_api(api): """Test individual API""" test_prompt = "Hai! Beri salam pendek dalam Bahasa Malaysia." try: if api['method'] == 'groq': headers = {"Authorization": f"Bearer {api['key']}"} data = { "model": "llama-3.1-8b-instant", "messages": [{"role": "user", "content": test_prompt}], "max_tokens": 50 } response = requests.post(api['url'], headers=headers, json=data, timeout=10) return response.status_code == 200 elif api['method'] == 'deepseek': headers = {"Authorization": f"Bearer {api['key']}"} data = { "model": "deepseek-chat", "messages": [{"role": "user", "content": test_prompt}], "max_tokens": 50 } response = requests.post(api['url'], headers=headers, json=data, timeout=10) return response.status_code == 200 elif api['method'] == 'gemini': url = f"{api['url']}?key={api['key']}" data = {"contents": [{"parts": [{"text": test_prompt}]}]} response = requests.post(url, json=data, timeout=10) return response.status_code == 200 except: return False def start_system(): """Start system dengan timing adjustment""" print(status_prompt("SYSTEM", "Starting Dual Bot System...")) # FASA 1: API Testing dengan TIMEOUT AWARENESS print(debug_prompt("Phase 1: Quick API Scan")) start_scan_time = time.time() working_apis = scan_apis() scan_duration = time.time() - start_scan_time print(debug_prompt(f"API scan took {scan_duration:.1f}s")) # Adjust connection timeout based on scan time remaining_time = 25 - scan_duration # 25s total allocation if remaining_time < 10: print(debug_prompt(f"โ ๏ธ Low time remaining: {remaining_time:.1f}s")) if not working_apis: print("โ ๏ธ Some APIs failed, but continuing with available ones...") # FASA 2: Auto Connect dengan adjusted timing print(debug_prompt("Phase 2: Auto Connecting Dual Bot")) dual_bot = DualBot() # ๐ SET CONNECTION TIMEOUT based on remaining time min_timeout = max(15, remaining_time - 5) # Minimum 15s, keep 5s buffer print(debug_prompt(f"Set connection timeout: {min_timeout}s")) return dual_bot.start() def main(): print(status_prompt("SYSTEM", "Starting API Scan & Auto Connect...")) # FASA 1: Scan API Keys print(debug_prompt("Phase 1: Scanning APIs")) working_apis = scan_apis() if not working_apis: print("โ CRITICAL: No working APIs found!") return print(status_prompt("API", f"Working: {', '.join(working_apis)}")) # FASA 2: Auto Connect Dual Bot print(debug_prompt("Phase 2: Auto Connecting Dual Bot")) bot = DualBot() try: if bot.start(): print(status_prompt("SYSTEM", "โ Dual Bot Connected & Running!")) print(debug_prompt("Press Ctrl+C to stop")) # Monitor loop while bot.is_running(): time.sleep(10) else: print(status_prompt("SYSTEM", "โ Dual Bot failed to connect")) except KeyboardInterrupt: print(status_prompt("SYSTEM", "Shutdown requested...")) bot.stop() except Exception as e: print(debug_prompt(f"System error: {e}")) bot.stop() if __name__ == "__main__": main()
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Infinite Money Glitch
JavaScript | 16 sec ago | 0.67 KB
๐ฅ๐ฅ +100,000$ in 1 month ๐ฅ๐จ
JavaScript | 1 min ago | 0.65 KB
โญโญ FREE BTC GUIDE โ Working โญโญ
JavaScript | 2 min ago | 0.67 KB
๐ 2OOO$ 15 MIN INSANE METHOD ๐๐ฅ
JavaScript | 2 min ago | 0.65 KB
๐๐ Swapzone Glitch 2000/15MIN ๐ต๐ฅ
JavaScript | 4 min ago | 0.65 KB
โญโญ Free Crypto Method โญโญ
JavaScript | 4 min ago | 0.67 KB
๐ฐ๐ฐ ChangeNOW Exploit
JavaScript | 4 min ago | 0.67 KB
โญโญ Instant Money Method โญ ๐ต๐
JavaScript | 6 min ago | 0.65 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!