|
|
@ -53,12 +53,14 @@ class Standalone: |
|
|
|
if not self.model: |
|
|
|
if not self.model: |
|
|
|
self.model = 'gpt-4-turbo-preview' |
|
|
|
self.model = 'gpt-4-turbo-preview' |
|
|
|
self.claude = False |
|
|
|
self.claude = False |
|
|
|
sorted_gpt_models, ollamaList, claudeList = self.fetch_available_models() |
|
|
|
sorted_gpt_models, ollamaList, claudeList, googleList = self.fetch_available_models() |
|
|
|
self.sorted_gpt_models = sorted_gpt_models |
|
|
|
self.sorted_gpt_models = sorted_gpt_models |
|
|
|
self.ollamaList = ollamaList |
|
|
|
self.ollamaList = ollamaList |
|
|
|
self.claudeList = claudeList |
|
|
|
self.claudeList = claudeList |
|
|
|
|
|
|
|
self.googleList = googleList |
|
|
|
self.local = self.model in ollamaList |
|
|
|
self.local = self.model in ollamaList |
|
|
|
self.claude = self.model in claudeList |
|
|
|
self.claude = self.model in claudeList |
|
|
|
|
|
|
|
self.google = self.model in googleList |
|
|
|
|
|
|
|
|
|
|
|
async def localChat(self, messages, host=''): |
|
|
|
async def localChat(self, messages, host=''): |
|
|
|
from ollama import AsyncClient |
|
|
|
from ollama import AsyncClient |
|
|
@ -144,6 +146,47 @@ class Standalone: |
|
|
|
session.save_to_session( |
|
|
|
session.save_to_session( |
|
|
|
system, user, message.content[0].text, self.args.session) |
|
|
|
system, user, message.content[0].text, self.args.session) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def googleChat(self, system, user, copy=False): |
|
|
|
|
|
|
|
import google.generativeai as genai |
|
|
|
|
|
|
|
self.googleApiKey = os.environ["GOOGLE_API_KEY"] |
|
|
|
|
|
|
|
genai.configure(api_key=self.googleApiKey) |
|
|
|
|
|
|
|
model = genai.GenerativeModel( |
|
|
|
|
|
|
|
model_name=self.model, system_instruction=system) |
|
|
|
|
|
|
|
response = model.generate_content(user) |
|
|
|
|
|
|
|
print(response.text) |
|
|
|
|
|
|
|
if copy: |
|
|
|
|
|
|
|
pyperclip.copy(response.text) |
|
|
|
|
|
|
|
if self.args.output: |
|
|
|
|
|
|
|
with open(self.args.output, "w") as f: |
|
|
|
|
|
|
|
f.write(response.text) |
|
|
|
|
|
|
|
if self.args.session: |
|
|
|
|
|
|
|
from .helper import Session |
|
|
|
|
|
|
|
session = Session() |
|
|
|
|
|
|
|
session.save_to_session( |
|
|
|
|
|
|
|
system, user, response.text, self.args.session) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async def googleStream(self, system, user, copy=False): |
|
|
|
|
|
|
|
import google.generativeai as genai |
|
|
|
|
|
|
|
buffer = "" |
|
|
|
|
|
|
|
self.googleApiKey = os.environ["GOOGLE_API_KEY"] |
|
|
|
|
|
|
|
genai.configure(api_key=self.googleApiKey) |
|
|
|
|
|
|
|
model = genai.GenerativeModel( |
|
|
|
|
|
|
|
model_name=self.model, system_instruction=system) |
|
|
|
|
|
|
|
response = model.generate_content(user, stream=True) |
|
|
|
|
|
|
|
for chunk in response: |
|
|
|
|
|
|
|
buffer += chunk.text |
|
|
|
|
|
|
|
print(chunk.text) |
|
|
|
|
|
|
|
if copy: |
|
|
|
|
|
|
|
pyperclip.copy(buffer) |
|
|
|
|
|
|
|
if self.args.output: |
|
|
|
|
|
|
|
with open(self.args.output, "w") as f: |
|
|
|
|
|
|
|
f.write(buffer) |
|
|
|
|
|
|
|
if self.args.session: |
|
|
|
|
|
|
|
from .helper import Session |
|
|
|
|
|
|
|
session = Session() |
|
|
|
|
|
|
|
session.save_to_session( |
|
|
|
|
|
|
|
system, user, buffer, self.args.session) |
|
|
|
|
|
|
|
|
|
|
|
def streamMessage(self, input_data: str, context="", host=''): |
|
|
|
def streamMessage(self, input_data: str, context="", host=''): |
|
|
|
""" Stream a message and handle exceptions. |
|
|
|
""" Stream a message and handle exceptions. |
|
|
|
|
|
|
|
|
|
|
@ -209,6 +252,10 @@ class Standalone: |
|
|
|
elif self.claude: |
|
|
|
elif self.claude: |
|
|
|
from anthropic import AsyncAnthropic |
|
|
|
from anthropic import AsyncAnthropic |
|
|
|
asyncio.run(self.claudeStream(system, user_message)) |
|
|
|
asyncio.run(self.claudeStream(system, user_message)) |
|
|
|
|
|
|
|
elif self.google: |
|
|
|
|
|
|
|
if system == "": |
|
|
|
|
|
|
|
system = " " |
|
|
|
|
|
|
|
asyncio.run(self.googleStream(system, user_message['content'])) |
|
|
|
else: |
|
|
|
else: |
|
|
|
stream = self.client.chat.completions.create( |
|
|
|
stream = self.client.chat.completions.create( |
|
|
|
model=self.model, |
|
|
|
model=self.model, |
|
|
@ -315,6 +362,10 @@ class Standalone: |
|
|
|
asyncio.run(self.localChat(messages)) |
|
|
|
asyncio.run(self.localChat(messages)) |
|
|
|
elif self.claude: |
|
|
|
elif self.claude: |
|
|
|
asyncio.run(self.claudeChat(system, user_message)) |
|
|
|
asyncio.run(self.claudeChat(system, user_message)) |
|
|
|
|
|
|
|
elif self.google: |
|
|
|
|
|
|
|
if system == "": |
|
|
|
|
|
|
|
system = " " |
|
|
|
|
|
|
|
asyncio.run(self.googleChat(system, user_message['content'])) |
|
|
|
else: |
|
|
|
else: |
|
|
|
response = self.client.chat.completions.create( |
|
|
|
response = self.client.chat.completions.create( |
|
|
|
model=self.model, |
|
|
|
model=self.model, |
|
|
@ -354,6 +405,7 @@ class Standalone: |
|
|
|
def fetch_available_models(self): |
|
|
|
def fetch_available_models(self): |
|
|
|
gptlist = [] |
|
|
|
gptlist = [] |
|
|
|
fullOllamaList = [] |
|
|
|
fullOllamaList = [] |
|
|
|
|
|
|
|
googleList = [] |
|
|
|
if "CLAUDE_API_KEY" in os.environ: |
|
|
|
if "CLAUDE_API_KEY" in os.environ: |
|
|
|
claudeList = ['claude-3-opus-20240229', 'claude-3-sonnet-20240229', |
|
|
|
claudeList = ['claude-3-opus-20240229', 'claude-3-sonnet-20240229', |
|
|
|
'claude-3-haiku-20240307', 'claude-2.1'] |
|
|
|
'claude-3-haiku-20240307', 'claude-2.1'] |
|
|
@ -389,8 +441,16 @@ class Standalone: |
|
|
|
fullOllamaList.append(model['name']) |
|
|
|
fullOllamaList.append(model['name']) |
|
|
|
except: |
|
|
|
except: |
|
|
|
fullOllamaList = [] |
|
|
|
fullOllamaList = [] |
|
|
|
|
|
|
|
try: |
|
|
|
|
|
|
|
import google.generativeai as genai |
|
|
|
|
|
|
|
genai.configure(api_key=os.environ["GOOGLE_API_KEY"]) |
|
|
|
|
|
|
|
for m in genai.list_models(): |
|
|
|
|
|
|
|
if 'generateContent' in m.supported_generation_methods: |
|
|
|
|
|
|
|
googleList.append(m.name) |
|
|
|
|
|
|
|
except: |
|
|
|
|
|
|
|
googleList = [] |
|
|
|
|
|
|
|
|
|
|
|
return gptlist, fullOllamaList, claudeList |
|
|
|
return gptlist, fullOllamaList, claudeList, googleList |
|
|
|
|
|
|
|
|
|
|
|
def get_cli_input(self): |
|
|
|
def get_cli_input(self): |
|
|
|
""" aided by ChatGPT; uses platform library |
|
|
|
""" aided by ChatGPT; uses platform library |
|
|
@ -523,6 +583,7 @@ class Setup: |
|
|
|
self.env_file = os.path.join(self.config_directory, ".env") |
|
|
|
self.env_file = os.path.join(self.config_directory, ".env") |
|
|
|
self.gptlist = [] |
|
|
|
self.gptlist = [] |
|
|
|
self.fullOllamaList = [] |
|
|
|
self.fullOllamaList = [] |
|
|
|
|
|
|
|
self.googleList = [] |
|
|
|
self.claudeList = ['claude-3-opus-20240229'] |
|
|
|
self.claudeList = ['claude-3-opus-20240229'] |
|
|
|
load_dotenv(self.env_file) |
|
|
|
load_dotenv(self.env_file) |
|
|
|
try: |
|
|
|
try: |
|
|
@ -612,6 +673,31 @@ class Setup: |
|
|
|
with open(self.env_file, "w") as f: |
|
|
|
with open(self.env_file, "w") as f: |
|
|
|
f.write(f"CLAUDE_API_KEY={claude_key}\n") |
|
|
|
f.write(f"CLAUDE_API_KEY={claude_key}\n") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def google_key(self, google_key): |
|
|
|
|
|
|
|
""" Set the Google API key in the environment file. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Args: |
|
|
|
|
|
|
|
google_key (str): The API key to be set. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Returns: |
|
|
|
|
|
|
|
None |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Raises: |
|
|
|
|
|
|
|
OSError: If the environment file does not exist or cannot be accessed. |
|
|
|
|
|
|
|
""" |
|
|
|
|
|
|
|
google_key = google_key.strip() |
|
|
|
|
|
|
|
if os.path.exists(self.env_file) and google_key: |
|
|
|
|
|
|
|
with open(self.env_file, "r") as f: |
|
|
|
|
|
|
|
lines = f.readlines() |
|
|
|
|
|
|
|
with open(self.env_file, "w") as f: |
|
|
|
|
|
|
|
for line in lines: |
|
|
|
|
|
|
|
if "GOOGLE_API_KEY" not in line: |
|
|
|
|
|
|
|
f.write(line) |
|
|
|
|
|
|
|
f.write(f"GOOGLE_API_KEY={google_key}\n") |
|
|
|
|
|
|
|
elif google_key: |
|
|
|
|
|
|
|
with open(self.env_file, "w") as f: |
|
|
|
|
|
|
|
f.write(f"GOOGLE_API_KEY={google_key}\n") |
|
|
|
|
|
|
|
|
|
|
|
def youtube_key(self, youtube_key): |
|
|
|
def youtube_key(self, youtube_key): |
|
|
|
""" Set the YouTube API key in the environment file. |
|
|
|
""" Set the YouTube API key in the environment file. |
|
|
|
|
|
|
|
|
|
|
|