-
-
Notifications
You must be signed in to change notification settings - Fork 13.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A few small fixes in GUI and Providers #1861
Conversation
Fix providers: - Liaobots - Fixed system message changed from "You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully." to "You are a helpful assistant." Providers added: - Feedough - Added a new provider with GPT-3 model - Cnote - Added a new provider with GPT-3.5 model
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello! Here's my review for the pull request titled "A few small fixes in GUI and Providers":
Review by g4f Copilot:
Thank you for your contribution to the project! It's great to see community engagement and efforts to improve the codebase. Here are my observations:
-
GUI Changes:
- The update in
index.html
to correct the model value fromllama2-70b
tollama3-70b-instruct
is a necessary fix for accuracy in the dropdown. Good catch!
- The update in
-
Provider Updates:
- In
Llama.py
, the renaming of models to include-instruct
suffix aligns with the naming convention and clarifies the model's purpose. This change enhances readability and consistency. - The modifications in
PerplexityLabs.py
seem to streamline the list of models and remove duplicates. It's important to ensure that all referenced models are still accessible and functional after these changes.
- In
-
Code Consistency:
- The diff shows a consistent approach to naming and structuring, which is beneficial for maintaining the code.
-
Error Handling:
- The change in the exception message to include the
message
variable inPerplexityLabs.py
is a minor but helpful improvement for debugging.
- The change in the exception message to include the
Overall, the pull request introduces small but meaningful improvements that contribute to the project's health. I recommend verifying the availability of all models after the changes to ensure no functionality is lost.
Once again, thank you for your work on this. It's always appreciated when individuals take the time to refine and enhance our projects.
Fixed.
GUI:
- index.html
Providers:
- Llama.py
- PerplexityLabs.py