This commit is contained in:
Slipstream 2025-04-29 15:54:11 -06:00
parent 9bdf70458a
commit 4f7d988ffa
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -644,7 +644,7 @@ async def get_ai_response(cog: 'GurtCog', message: discord.Message, model_name:
vertex_tool = Tool(function_declarations=TOOLS) if TOOLS else None
model_with_tools = GenerativeModel(
model_name=(
"projects/gurting/locations/us-central1/models/"
"projects/gurting/locations/us-central1/tunedModels/"
"670687799292198912"
),
system_instruction=final_system_prompt,
@ -653,7 +653,7 @@ async def get_ai_response(cog: 'GurtCog', message: discord.Message, model_name:
# 2. Model WITHOUT tools: For the final call to strictly enforce JSON schema
model_without_tools = GenerativeModel(
model_name=(
"projects/gurting/locations/us-central1/models/"
"projects/gurting/locations/us-central1/tunedModels/"
"670687799292198912"
),
system_instruction=final_system_prompt