Spaces:
Sleeping
Sleeping
Undo changes in rag.py
Browse files- appStore/rag.py +18 -31
appStore/rag.py
CHANGED
@@ -58,40 +58,27 @@ def run_query(context, label, model_sel_name):
|
|
58 |
# Initialize the client, pointing it to one of the available models
|
59 |
client = InferenceClient(model_sel_name, token=hf_token)
|
60 |
|
61 |
-
#
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
# # Create an object to store the full chat completion
|
68 |
-
# completion_result = ChatCompletionResult()
|
69 |
-
# res_box = st.empty()
|
70 |
-
|
71 |
-
# # Iterate through the streamed output
|
72 |
-
# for chunk in chat_completion:
|
73 |
-
# # Extract the object containing the text
|
74 |
-
# if chunk.choices is not None:
|
75 |
-
# chunk_message = chunk.choices[0].delta
|
76 |
-
# if 'content' in chunk_message:
|
77 |
-
# completion_result.add_content(chunk_message['content']) # Store the message
|
78 |
-
# # Add the latest text and merge it with all previous
|
79 |
-
# result = completion_result.get_full_content()
|
80 |
-
# res_box.success(result) # Output to response text box
|
81 |
-
|
82 |
-
|
83 |
-
# Use streaming text generation
|
84 |
-
response_stream = client.text_generation(prompt, stream=True, max_new_tokens=512)
|
85 |
|
|
|
86 |
completion_result = ChatCompletionResult()
|
87 |
res_box = st.empty()
|
88 |
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
|
94 |
-
return completion_result
|
95 |
|
96 |
-
#
|
97 |
-
|
|
|
58 |
# Initialize the client, pointing it to one of the available models
|
59 |
client = InferenceClient(model_sel_name, token=hf_token)
|
60 |
|
61 |
+
# Instantiate ChatCompletion as a generator object (stream is set to True)
|
62 |
+
chat_completion = client.chat.completions.create(
|
63 |
+
messages=messages,
|
64 |
+
stream=True
|
65 |
+
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
|
67 |
+
# Create an object to store the full chat completion
|
68 |
completion_result = ChatCompletionResult()
|
69 |
res_box = st.empty()
|
70 |
|
71 |
+
# Iterate through the streamed output
|
72 |
+
for chunk in chat_completion:
|
73 |
+
# Extract the object containing the text
|
74 |
+
if chunk.choices is not None:
|
75 |
+
chunk_message = chunk.choices[0].delta
|
76 |
+
if 'content' in chunk_message:
|
77 |
+
completion_result.add_content(chunk_message['content']) # Store the message
|
78 |
+
# Add the latest text and merge it with all previous
|
79 |
+
result = completion_result.get_full_content()
|
80 |
+
res_box.success(result) # Output to response text box
|
81 |
|
|
|
82 |
|
83 |
+
# Return the stored chat completion object for later use
|
84 |
+
return completion_result
|