We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33aba0b commit ad200d8Copy full SHA for ad200d8
1 file changed
modules/ai_generator.py
@@ -50,7 +50,7 @@ def generate_profile_summary(self, profile_data):
50
"content": prompt
51
}
52
],
53
- model="llama-3.1-70b-versatile"
+ model="llama-3.1-8b-instant"
54
)
55
if not response.choices or response.choices[0].message.content == "":
56
raise Exception("No response from AI model")
@@ -119,8 +119,8 @@ def validate_json_response(response):
119
"content": construct_prompt(contributions)
120
121
122
- model="llama-3.1-70b-versatile",
123
- response_format={"type": "json_object"}
+ model="llama-3.1-8b-instant",
+ response_format={"type": "json_object"}
124
125
126
# Extract response content
0 commit comments