Skip to content

Commit 94b7481

Browse files
committed
switch from gemini flash to pro
1 parent 19260ae commit 94b7481

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Techiee.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
import os
99
import fitz
1010
import asyncio
11+
import flask
1112

1213
# Keep bot running 24/7
1314

@@ -50,7 +51,7 @@
5051
]
5152

5253
gemini_system_prompt = "You are Techiee, an experimental chatbot. You were developed by Discord users Tech (@techgamerexpert) and Budd (@merbudd), and they built you on Google's Gemini AI models."
53-
gemini_model = genai.GenerativeModel(model_name="gemini-1.5-flash", generation_config=text_generation_config, safety_settings=safety_settings,system_instruction=gemini_system_prompt)
54+
gemini_model = genai.GenerativeModel(model_name="gemini-1.5-pro-latest", generation_config=text_generation_config, safety_settings=safety_settings,system_instruction=gemini_system_prompt)
5455

5556
tracked_channels = [
5657
1208874114916425828,

keep_alive.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import flask
12
from flask import Flask,render_template
23
from threading import Thread
34

0 commit comments

Comments
 (0)