Spaces:
Sleeping
Sleeping
File size: 9,024 Bytes
3ca90f6 8e74de2 3ca90f6 a836b76 3ca90f6 a836b76 3ca90f6 a836b76 8e74de2 a836b76 8e74de2 a836b76 3ca90f6 a836b76 3ca90f6 a836b76 3ca90f6 cf545bf 3ca90f6 8e74de2 3ca90f6 8e74de2 3ca90f6 8e74de2 3ca90f6 8e74de2 a836b76 8e74de2 a836b76 8e74de2 a836b76 3ca90f6 8e74de2 a836b76 cf545bf 3ca90f6 a836b76 3ca90f6 8e74de2 3ca90f6 8e74de2 a836b76 8e74de2 a836b76 8e74de2 3ca90f6 a836b76 3ca90f6 a836b76 f7b6e33 3ca90f6 a836b76 8e74de2 a836b76 f7b6e33 a836b76 f7b6e33 8e74de2 3ca90f6 cf545bf a836b76 cf545bf a836b76 cf545bf 3ca90f6 f7b6e33 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
import gradio as gr
import time
import json
from cerebras.cloud.sdk import Cerebras
from typing import List, Dict, Tuple, Any, Generator
from tenacity import retry, stop_after_attempt, wait_fixed
def make_api_call(api_key: str, messages: List[Dict[str, str]], max_tokens: int, is_final_answer: bool = False) -> Dict[str, Any]:
"""
Make an API call to the Cerebras chat completions endpoint with retry logic.
"""
client = Cerebras(api_key=api_key)
try:
start_time = time.time()
response = client.chat.completions.create(
model="llama3.1-70b",
messages=messages,
max_tokens=max_tokens,
temperature=0.2,
response_format={"type": "json_object"}
)
end_time = time.time()
content = json.loads(response.choices[0].message.content)
# Access time_info attributes directly
queue_time = response.time_info.queue_time
prompt_time = response.time_info.prompt_time
completion_time = response.time_info.completion_time
total_time = response.time_info.total_time
# Use the provided usage information
completion_tokens = response.usage.completion_tokens
# Calculate tokens per second using completion tokens
tokens_per_second = completion_tokens / total_time if total_time > 0 else 0
content['token_info'] = {
'completion_tokens': completion_tokens,
'tokens_per_second': tokens_per_second,
'queue_time': queue_time,
'prompt_time': prompt_time,
'completion_time': completion_time,
'total_time': total_time # Use total_time as the 'duration'
}
return content
except Exception as e:
if is_final_answer:
return {"title": "Error", "content": f"Failed to generate final answer. Error: {str(e)}"}
else:
return {"title": "Error", "content": f"Failed to generate step. Error: {str(e)}", "next_action": "final_answer"}
def generate_response(api_key: str, prompt: str) -> Generator[Tuple[List[Tuple[str, str]], float, int, float], None, None]:
"""
Generate a response to the given prompt using a step-by-step reasoning approach.
This function is now a generator that yields each step as it's generated.
"""
system_message = """You are an expert AI assistant that explains your reasoning step by step. For each step, provide a title that describes what you're doing in that step, along with the content. Decide if you need another step or if you're ready to give the final answer. Respond in JSON format with 'title', 'content', and 'next_action' (either 'continue' or 'final_answer') keys. USE AS MANY REASONING STEPS AS POSSIBLE. AT LEAST 3. BE AWARE OF YOUR LIMITATIONS AS AN LLM AND WHAT YOU CAN AND CANNOT DO. IN YOUR REASONING, INCLUDE EXPLORATION OF ALTERNATIVE ANSWERS. CONSIDER YOU MAY BE WRONG, AND IF YOU ARE WRONG IN YOUR REASONING, WHERE IT WOULD BE. FULLY TEST ALL OTHER POSSIBILITIES. YOU CAN BE WRONG. WHEN YOU SAY YOU ARE RE-EXAMINING, ACTUALLY RE-EXAMINE, AND USE ANOTHER APPROACH TO DO SO. DO NOT JUST SAY YOU ARE RE-EXAMINING. USE AT LEAST 3 METHODS TO DERIVE THE ANSWER. USE BEST PRACTICES."""
messages = [
{"role": "system", "content": system_message},
{"role": "user", "content": prompt},
{"role": "assistant", "content": "Thank you! I will now think step by step following my instructions, starting at the beginning after decomposing the problem."}
]
steps = []
step_count = 0
total_thinking_time = 0
total_completion_tokens = 0
while True:
step_data = make_api_call(api_key, messages, 300)
token_info = step_data.pop('token_info', {'completion_tokens': 0, 'tokens_per_second': 0, 'duration': step_data.get('total_time', 0)})
# Use total_time from token_info as the duration
total_thinking_time += token_info.get('total_time', 0)
total_completion_tokens += token_info['completion_tokens']
step_count += 1
step_title = f"Step {step_count}: {step_data['title']}"
step_content = f"{step_data['content']}\n\n**API Call Duration: {token_info['total_time']:.2f} seconds**\n**Completion Tokens: {token_info['completion_tokens']}, Tokens/s: {token_info['tokens_per_second']:.2f}**"
steps.append((step_title, step_content))
messages.append({"role": "assistant", "content": json.dumps(step_data)})
# Calculate the overall average tokens per second using completion tokens
overall_tokens_per_second = total_completion_tokens / total_thinking_time if total_thinking_time > 0 else 0
# Yield the current conversation, total thinking time, total completion tokens, and overall average tokens per second
yield steps, total_thinking_time, total_completion_tokens, overall_tokens_per_second
if step_data.get('next_action') == 'final_answer':
break
# Request the final answer
messages.append({"role": "user", "content": "Please provide the final answer based on your reasoning above."})
final_data = make_api_call(api_key, messages, 200, is_final_answer=True)
token_info = final_data.pop('token_info', {'completion_tokens': 0, 'tokens_per_second': 0, 'duration': final_data.get('total_time', 0)})
total_thinking_time += token_info.get('total_time', 0)
total_completion_tokens += token_info['completion_tokens']
final_content = f"{final_data.get('content', 'No final answer provided.')}\n\n**Final answer API call duration: {token_info['total_time']:.2f} seconds**\n**Completion Tokens: {token_info['completion_tokens']}, Tokens/s: {token_info['tokens_per_second']:.2f}**"
steps.append(("Final Answer", final_content))
# Calculate the final overall average tokens per second using completion tokens
overall_tokens_per_second = total_completion_tokens / total_thinking_time if total_thinking_time > 0 else 0
# Yield the final conversation, total thinking time, total completion tokens, and overall average tokens per second
yield steps, total_thinking_time, total_completion_tokens, overall_tokens_per_second
def respond(api_key: str, message: str, history: List[Tuple[str, str]]) -> Generator[Tuple[List[Tuple[str, str]], str], None, None]:
"""
Generator function to handle responses and yield updates for streaming.
The conversation will now show the newest message at the top.
"""
if not api_key:
yield history, "Please provide a valid Cerebras API key."
return
# Initialize the generator
response_generator = generate_response(api_key, message)
for steps, total_time, total_completion_tokens, avg_tokens_per_second in response_generator:
conversation = history.copy()
for title, content in steps[len(conversation):]:
if title.startswith("Step") or title == "Final Answer":
# Prepend new messages to display newest first
conversation.insert(0, (title, content))
else:
# Prepend any other messages
conversation.insert(0, (title, content))
yield conversation, f"**Total API call time:** {total_time:.2f} seconds\n**Completion tokens:** {total_completion_tokens}\n**Overall average tokens/s:** {avg_tokens_per_second:.2f}"
def main():
with gr.Blocks() as demo:
gr.Markdown("# o1-like Chain of Thought - LLaMA-3.1 70B on Cerebras")
gr.Markdown("""
Implement Chain of Thought with prompting to improve output accuracy.
Powered by Cerebras, ensuring fast reasoning steps.
""")
with gr.Row():
api_key_input = gr.Textbox(
label="Cerebras API Key",
type="password",
placeholder="Enter your Cerebras API key",
show_label=True
)
chatbot = gr.Chatbot(label="Conversation")
with gr.Row():
user_input = gr.Textbox(
label="Your Query",
placeholder="Enter your query here...",
show_label=True
)
submit_btn = gr.Button("Submit")
thinking_time_display = gr.Textbox(
label="Performance Metrics",
value="",
interactive=False
)
submit_btn.click(
fn=respond,
inputs=[api_key_input, user_input, chatbot],
outputs=[chatbot, thinking_time_display],
queue=True
)
# Allow pressing Enter to submit
user_input.submit(
fn=respond,
inputs=[api_key_input, user_input, chatbot],
outputs=[chatbot, thinking_time_display],
queue=True
)
demo.launch()
if __name__ == "__main__":
main()
|