neuralleap commited on
Commit
83e690f
·
verified ·
1 Parent(s): ea3619c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -9
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 🤖
4
  colorFrom: blue
5
  colorTo: green
6
  sdk: streamlit
7
- sdk_version: 1.42.2
8
  app_file: app.py
9
  pinned: false
10
  ---
@@ -25,10 +25,19 @@ A sophisticated Streamlit app that mimics the ChatGPT interface, using OpenAI's
25
  - Switch between conversations
26
  - Delete old conversations
27
  - **Model selection** - choose between different OpenAI models:
28
- - GPT-3.5-Turbo (default)
29
- - GPT-4
30
- - GPT-3.5-Turbo-16k (for longer conversations)
31
- - GPT-4-Turbo
 
 
 
 
 
 
 
 
 
32
  - **Conversation history** preserved between sessions
33
  - **Demo mode** that works without an API key
34
  - **Responsive design** that adapts to different screen sizes
@@ -87,16 +96,31 @@ The app includes a demo mode that works without an API key. In this mode:
87
 
88
  The app will automatically deploy and be available at your Hugging Face Spaces URL.
89
 
90
- ## About the Model
91
 
92
  This app lets you select from multiple OpenAI models:
93
 
 
94
  - **GPT-3.5-Turbo**: Fast and cost-effective, suitable for most tasks
95
  - **GPT-4**: More capable but slower and more expensive
96
  - **GPT-3.5-Turbo-16k**: Supports longer conversations with extended context window
97
- - **GPT-4-Turbo**: OpenAI's most advanced model with significantly larger context window
 
 
98
 
99
- You can select your preferred model in the sidebar. Note that model availability depends on your OpenAI API key permissions and subscription tier.
 
 
 
 
 
 
 
 
 
 
 
 
100
 
101
  ## Customization
102
 
@@ -104,4 +128,4 @@ You can easily customize the app by:
104
  - Changing the model parameters in the `AVAILABLE_MODELS` dictionary
105
  - Adjusting the styling in the CSS section
106
  - Adding more features to the sidebar
107
- - Creating additional response templates for the demo mode
 
4
  colorFrom: blue
5
  colorTo: green
6
  sdk: streamlit
7
+ sdk_version: 1.24.0
8
  app_file: app.py
9
  pinned: false
10
  ---
 
25
  - Switch between conversations
26
  - Delete old conversations
27
  - **Model selection** - choose between different OpenAI models:
28
+ - Standard Models:
29
+ - GPT-3.5-Turbo (default)
30
+ - GPT-4
31
+ - GPT-3.5-Turbo-16k (for longer conversations)
32
+ - GPT-4-Turbo
33
+ - GPT-4o (latest GPT-4 Omni model)
34
+ - GPT-4o-Mini (efficient version of GPT-4o)
35
+ - Reasoning Models:
36
+ - o1-mini (Mini reasoning model)
37
+ - o1 (Standard reasoning model)
38
+ - o1-pro (Professional reasoning model)
39
+ - o3-mini (Advanced reasoning - Mini)
40
+ - o3-mini-high (Advanced reasoning - Enhanced)
41
  - **Conversation history** preserved between sessions
42
  - **Demo mode** that works without an API key
43
  - **Responsive design** that adapts to different screen sizes
 
96
 
97
  The app will automatically deploy and be available at your Hugging Face Spaces URL.
98
 
99
+ ## About the Models
100
 
101
  This app lets you select from multiple OpenAI models:
102
 
103
+ ### Standard Models
104
  - **GPT-3.5-Turbo**: Fast and cost-effective, suitable for most tasks
105
  - **GPT-4**: More capable but slower and more expensive
106
  - **GPT-3.5-Turbo-16k**: Supports longer conversations with extended context window
107
+ - **GPT-4-Turbo**: OpenAI's advanced model with larger context window
108
+ - **GPT-4o**: Latest GPT-4 Omni model, OpenAI's most advanced offering
109
+ - **GPT-4o-Mini**: More efficient version of GPT-4o with excellent capabilities
110
 
111
+ ### Reasoning Models
112
+ OpenAI's specialized models for enhanced logical reasoning and problem-solving:
113
+
114
+ #### O1 Series
115
+ - **o1-mini**: Compact reasoning model for efficient problem-solving
116
+ - **o1**: Standard reasoning model with balanced capabilities
117
+ - **o1-pro**: Professional-grade reasoning with enhanced analytical abilities
118
+
119
+ #### O3 Series
120
+ - **o3-mini**: Advanced reasoning model optimized for efficiency
121
+ - **o3-mini-high**: Enhanced version with superior reasoning capabilities
122
+
123
+ All models are accessible using your OpenAI API key. Model availability depends on your API key permissions and subscription tier.
124
 
125
  ## Customization
126
 
 
128
  - Changing the model parameters in the `AVAILABLE_MODELS` dictionary
129
  - Adjusting the styling in the CSS section
130
  - Adding more features to the sidebar
131
+ - Creating additional response templates for the demo mode