adi-123 commited on
Commit
a4bb483
·
verified ·
1 Parent(s): 31709fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -22
app.py CHANGED
@@ -21,30 +21,22 @@ def img2txt(url):
21
  return text
22
 
23
  # Text-to-story
24
- def txt2story(img_text, top_k, top_p, temperature):
25
- print("Initializing client...")
26
- client = openai.OpenAI(
27
- api_key=os.environ["TOGETHER_API_KEY"],
28
- base_url='https://api.together.xyz',
29
- )
 
 
 
 
 
30
 
31
- messages = [
32
- {"role": "system", "content": '''As an experienced short story writer, write story title and then create a meaningful story influenced by provided words.
33
- Ensure stories conclude positively within 100 words. Remember the story must end within 100 words'''},
34
- {"role": "user", "content": f"Here is input set of words: {img_text}"},
35
- ]
36
 
37
- print("Story...")
38
- chat_completion = client.chat.completions.create(
39
- model="togethercomputer/llama-2-70b-chat",
40
- messages=messages,
41
- top_k=top_k,
42
- top_p=top_p,
43
- temperature=temperature
44
- )
45
-
46
- print(chat_completion.choices[0].message.content)
47
- return chat_completion.choices[0].message.content
48
 
49
 
50
  # Text-to-speech
 
21
  return text
22
 
23
  # Text-to-story
24
+ data = {
25
+ "model": llm_model,
26
+ "messages": [
27
+ {"role": "system", "content": '''As an experienced short story writer, write story title and then create a meaningful story influenced by provided words.
28
+ Ensure stories conclude positively within 100 words. Remember the story must end within 100 words''', "temperature": temperature},
29
+ {"role": "user", "content": f"Here is input set of words: {img_text}", "temperature": temperature}
30
+ ],
31
+ "top_k": top_k,
32
+ "top_p": top_p,
33
+ "temperature": temperature
34
+ }
35
 
36
+ response = requests.post("https://api.together.xyz/inference", headers=headers, json=data)
 
 
 
 
37
 
38
+ story = response.json()["output"]["choices"][0]["text"]
39
+ return story
 
 
 
 
 
 
 
 
 
40
 
41
 
42
  # Text-to-speech