Mbonea commited on
Commit
7df9f15
·
1 Parent(s): 96655e4

fixed errors

Browse files
App/Chat/utils/RAG.py CHANGED
@@ -46,7 +46,7 @@ class GenerativeAIAssistant:
46
  context_yaml += "\n" + yaml.dump(context)
47
  Template = f"""
48
  #Instructions
49
- You are given the following context in yaml of a transcript of a youtube video, the start and end times are indicated and the text that was said is also given. You are also given a question, use the context to answer the question in a consise manner, make it short and to the point, don't provide additional details.
50
 
51
 
52
  #Context
@@ -123,6 +123,6 @@ class GenerativeAIAssistant:
123
  ) as response:
124
  try:
125
  temp = await response.json()
126
- return temp["choices"][0]["content"]
127
  except Exception as e:
128
  return f"Error ⚠️ {e} {temp}"
 
46
  context_yaml += "\n" + yaml.dump(context)
47
  Template = f"""
48
  #Instructions
49
+ You are given the following context in yaml of a transcript of a youtube video, the start and end times are indicated and the text that was said is also given. You are also given a question, use the context to answer the question in a consise manner, make it short and to the point, don't provide additional details. If its just a conversational question,ignore the context, respond with the appropriate response. eg Hello hi, how are you? etc.
50
 
51
 
52
  #Context
 
123
  ) as response:
124
  try:
125
  temp = await response.json()
126
+ return temp["choices"][0]['message']["content"]
127
  except Exception as e:
128
  return f"Error ⚠️ {e} {temp}"
App/Chat/utils/Summarize.py CHANGED
@@ -53,7 +53,7 @@ async def PalmTextModel(text, candidates=1):
53
  "Content-Type": "application/json",
54
  "Authorization": f"Bearer {GroqAPIKey}",
55
  }
56
- payload = {"messages": [{"role": "user", "content": text}]}
57
  # payload = {
58
  # "contents": [
59
  # {
 
53
  "Content-Type": "application/json",
54
  "Authorization": f"Bearer {GroqAPIKey}",
55
  }
56
+ payload = {"messages": [{"role": "user", "content": text}], "model": "mixtral-8x7b-32768"}
57
  # payload = {
58
  # "contents": [
59
  # {