Update app.py
Browse files
app.py
CHANGED
@@ -21,30 +21,22 @@ def img2txt(url):
|
|
21 |
return text
|
22 |
|
23 |
# Text-to-story
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
-
|
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 |
-
|
38 |
-
|
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
|