pradeepsengarr commited on
Commit
5c2bb8f
·
verified ·
1 Parent(s): 92ee45a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +70 -53
app.py CHANGED
@@ -1,58 +1,75 @@
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
 
4
- # Smaller model that works under 16GiB
5
- client = InferenceClient("tiiuae/falcon-rw-1b")
6
-
7
- def respond(
8
- topic,
9
- tone,
10
- system_message,
11
- max_tokens,
12
- temperature,
13
- top_p,
14
- history: list[tuple[str, str]] = [],
15
- ):
16
- prompt = (
17
- f"Write a blog post on the topic '{topic.strip()}' in a '{tone.strip()}' tone."
18
- " Include a catchy title, an introduction, 3 main sections with headings, and a conclusion."
19
- )
20
-
21
- # Since Falcon-RW-1B doesn’t use chat format, we pass everything as a single prompt
22
- full_prompt = f"{system_message}\n\nUser: {prompt}\nAssistant:"
23
 
24
- response = ""
25
- for token in client.text_generation(
26
- full_prompt,
27
- max_tokens=max_tokens,
28
- stream=True,
29
- temperature=temperature,
30
- top_p=top_p,
 
31
  ):
32
- response += token.token
33
- yield response
34
-
35
-
36
- demo = gr.ChatInterface(
37
- fn=respond,
38
- additional_inputs=[
39
- gr.Textbox(label="Topic", placeholder="e.g., Future of AI"),
40
- gr.Dropdown(
41
- choices=["informative", "casual", "persuasive", "professional"],
42
- value="informative",
43
- label="Tone"
44
- ),
45
- gr.Textbox(
46
- value="You are an expert blog writing assistant. When a user provides a topic and tone, generate a blog with a catchy title, an introduction, 3 main sections, and a conclusion in that tone.",
47
- label="System message"
48
- ),
49
- gr.Slider(minimum=1, maximum=1024, value=512, step=1, label="Max new tokens"),
50
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
51
- gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)")
52
- ],
53
- chatbot=gr.Chatbot(label="AI Blog Writer"),
54
- title="📝 Agentic Blog Writer"
55
- )
56
-
57
- if __name__ == "__main__":
58
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
 
4
+ client = InferenceClient("google/gemma-1.1-2b-it")
5
+ client = InferenceClient("mistralai/Mistral-Nemo-Instruct-2407")
6
+
7
+ def models(Query):
8
+
9
+ messages = []
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
+ messages.append({"role": "user", "content": f"[SYSTEM] You are ASSISTANT who answer question asked by user in short and concise manner. [USER] {Query}"})
12
+
13
+ Response = ""
14
+
15
+ for message in client.chat_completion(
16
+ messages,
17
+ max_tokens=2048,
18
+ stream=True
19
  ):
20
+ token = message.choices[0].delta.content
21
+
22
+ Response += token
23
+ yield Response
24
+
25
+ def nemo(query):
26
+ budget = 3
27
+ message = f"""[INST] [SYSTEM] You are a helpful assistant in normal conversation.
28
+ When given a problem to solve, you are an expert problem-solving assistant.
29
+ Your task is to provide a detailed, step-by-step solution to a given question.
30
+ Follow these instructions carefully:
31
+ 1. Read the given question carefully and reset counter between <count> and </count> to {budget} (maximum 3 steps).
32
+ 2. Think critically like a human researcher or scientist. Break down the problem using first principles to conceptually understand and answer the question.
33
+ 3. Generate a detailed, logical step-by-step solution.
34
+ 4. Enclose each step of your solution within <step> and </step> tags.
35
+ 5. You are allowed to use at most {budget} steps (starting budget), keep track of it by counting down within tags <count> </count>, STOP GENERATING MORE STEPS when hitting 0, you don't have to use all of them.
36
+ 6. Do a self-reflection when you are unsure about how to proceed, based on the self-reflection and reward, decide whether you need to return to the previous steps.
37
+ 7. After completing the solution steps, reorganize and synthesize the steps into the final answer within <answer> and </answer> tags.
38
+ 8. Provide a critical, honest, and subjective self-evaluation of your reasoning process within <reflection> and </reflection> tags.
39
+ 9. Assign a quality score to your solution as a float between 0.0 (lowest quality) and 1.0 (highest quality), enclosed in <reward> and </reward> tags.
40
+ Example format:
41
+ <count> [starting budget] </count>
42
+ <step> [Content of step 1] </step>
43
+ <count> [remaining budget] </count>
44
+ <step> [Content of step 2] </step>
45
+ <reflection> [Evaluation of the steps so far] </reflection>
46
+ <reward> [Float between 0.0 and 1.0] </reward>
47
+ <count> [remaining budget] </count>
48
+ <step> [Content of step 3 or Content of some previous step] </step>
49
+ <count> [remaining budget] </count>
50
+ ...
51
+ <step> [Content of final step] </step>
52
+ <count> [remaining budget] </count>
53
+ <answer> [Final Answer] </answer> (must give final answer in this format)
54
+ <reflection> [Evaluation of the solution] </reflection>
55
+ <reward> [Float between 0.0 and 1.0] </reward> [/INST] [INST] [QUERY] {query} [/INST] [ASSISTANT] """
56
+
57
+ stream = client.text_generation(message, max_new_tokens=4096, stream=True, details=True, return_full_text=False)
58
+ output = ""
59
+
60
+ for response in stream:
61
+ output += response.token.text
62
+ return output
63
+
64
+ description="# Chat GO\n### Enter your query and Press enter and get lightning fast response"
65
+
66
+ with gr.Blocks() as demo1:
67
+ gr.Interface(description=description,fn=models, inputs=["text"], outputs="text")
68
+ with gr.Blocks() as demo2:
69
+ gr.Interface(description="Very low but critical thinker",fn=nemo, inputs=["text"], outputs="text", api_name="critical_thinker", concurrency_limit=10)
70
+
71
+ with gr.Blocks() as demo:
72
+ gr.TabbedInterface([demo1, demo2] , ["Fast", "Critical"])
73
+
74
+ demo.queue(max_size=300000)
75
+ demo.launch()