-
Notifications
You must be signed in to change notification settings - Fork 112
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
Audio input, app layout tweaks, better background startup, use ExtendedTask #224
Changes from 38 commits
f5d3e74
c1b68f1
78c3078
f302d96
20a6456
5595d35
0fb2b73
469dff5
45dde96
fc80c92
3380ee8
9eb110e
a664030
2f408e4
ea55e20
0a88caf
f1ac74e
48ce475
1eb0cf0
f3be247
1343f53
5511e5d
fcb826b
b9344d9
df47901
341b051
159fb8c
7b36c89
1fbe973
281f346
1be0040
4e089e6
96103a8
8a9d97c
78b61c1
1d76339
2cd7972
b1f7ef5
22e34ac
0b08eac
5cb2dd1
0a028fa
2ff5473
bb34c01
c90a94f
dee7541
602c9f5
44d56ac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,12 @@ | |
- Added claude-3.5-sonnet model from Anthropic. | ||
- Set gpt-4o-mini as default model for OpenAI. #219 | ||
- Fixed bugs with Azure OpenAI service. #223 | ||
- Add audio input option for chat app. #224 | ||
- Fix bug with chat app not loading on linux. #224 | ||
- Allow chat app to run in Positron (not yet as background job) #224 | ||
- API calls now run async with ExtendedTask. #224 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think async (and by extension, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was meant for line 10 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fair point on async. I've been using local models more, and they can be slow. The idea was to get not block actions in the current session, but I don't think that adds much. I'll remove the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update on this, ExtendedTask needs a promise to be returned. I've moved promises to Suggests, but it's not really another dependency because shiny already depends on the package. |
||
- New styling of chat app. #224 | ||
JamesHWade marked this conversation as resolved.
Show resolved
Hide resolved
|
||
- Add code syntax highlighting to chat app. #224 | ||
|
||
## gptstudio 0.4.0 | ||
|
||
|
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.
I wasn't able to find the audio input in the UI
![image](https://private-user-images.githubusercontent.com/19418298/361360219-0b0a9a34-5f68-4d37-bbff-e3ab68d003b6.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkxOTE3MDAsIm5iZiI6MTczOTE5MTQwMCwicGF0aCI6Ii8xOTQxODI5OC8zNjEzNjAyMTktMGIwYTlhMzQtNWY2OC00ZDM3LWJiZmYtZTNhYjY4ZDAwM2I2LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTAlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEwVDEyNDMyMFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWNjYzEyMzFlNWVjOGFiYzNjMWQ2MmU3NDVmZTljOWI3YzI1YzkwMDYzY2MwZjFlZGM2NzZiNTExZmEwOTdjYjQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.Rdcfi5xV9hXe-Gv1aAVgZrgjRYaDSq2WRPAQ84vTOjc)
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.
Did you enable it in the settings?
At a minimum, I need to document instructions better.