Skip to content
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

0.5.1 #132

Merged
merged 55 commits into from
Dec 12, 2023
Merged

0.5.1 #132

Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
8ce2c43
Tracing (#60)
VVoruganti Aug 22, 2023
d0570d6
0.3.0 Long Term Memory (#62)
VVoruganti Aug 28, 2023
b8843c0
fix: update link to more recent blog post
vintrocode Sep 1, 2023
2628753
Sanitize thoughts before sending them in the thought's channel (#65)
jacobvm04 Sep 1, 2023
88c81d1
LayeredLRU Cache (#69)
VVoruganti Sep 2, 2023
17caa80
Stateless bug (#70)
VVoruganti Sep 5, 2023
7fc94e9
Merge branch 'main' into staging
VVoruganti Sep 8, 2023
174a9fa
Fix merge errors
VVoruganti Sep 8, 2023
05b2de2
Fix merge errors 2
VVoruganti Sep 8, 2023
b7e2bb7
fix: top_p 0.5 to address gibberish
vintrocode Sep 8, 2023
312ff22
Merge branch 'main' into staging
VVoruganti Sep 8, 2023
30e08f6
Custom Web UI (#76)
VVoruganti Sep 10, 2023
c248dae
Fix Github Action Workflow
VVoruganti Sep 10, 2023
638c78a
Fix Github Action Workflow
VVoruganti Sep 10, 2023
c912212
add user prediction function
vintrocode Sep 11, 2023
0596350
Honcho Changes (#77)
VVoruganti Sep 11, 2023
cc1b745
Social Graph Changes
VVoruganti Sep 11, 2023
e226639
Authentication Form Styling
VVoruganti Sep 12, 2023
f1b02b9
Working Auth
VVoruganti Sep 12, 2023
9a31a8c
Stylistic changes
VVoruganti Sep 12, 2023
676be29
Address all linting errors
VVoruganti Sep 13, 2023
e5a8ff0
Naive Route Protection
VVoruganti Sep 13, 2023
63a693a
Fly minimum machines
VVoruganti Sep 13, 2023
9c96ecc
Open Graph Image Changes
VVoruganti Sep 13, 2023
dbce17e
Merge pull request #78 from plastic-labs/ui-tweaks
vintrocode Sep 13, 2023
dda6f0f
Remove anonymous honcho usage, fix opengraph (#80)
VVoruganti Sep 13, 2023
2378e3d
UI tweaks (#81)
VVoruganti Sep 13, 2023
0841901
UI tweaks (#82)
VVoruganti Sep 13, 2023
39a9559
Open Graph Fix
VVoruganti Sep 13, 2023
025320a
Merge branch 'staging' into bloom-a
VVoruganti Sep 13, 2023
933dda5
Remove Streamlit
VVoruganti Sep 13, 2023
5f72fad
Merge pull request #83 from plastic-labs/bloom-a
vintrocode Sep 14, 2023
53ef59d
UI tweaks (#84)
VVoruganti Sep 14, 2023
7a1f3de
Merge branch 'main' into staging
VVoruganti Sep 14, 2023
46930fc
Web fixes (#89)
hyusap Sep 18, 2023
f633583
Optimization (#96)
VVoruganti Sep 19, 2023
0ed850d
Optimization (#98)
VVoruganti Sep 19, 2023
99bf58a
Merge branch 'main' into staging
VVoruganti Sep 19, 2023
3b95cfb
add latex support and incentive it (#104)
hyusap Oct 5, 2023
6dc3528
prevent unallowed messages (#111)
hyusap Oct 5, 2023
53430b1
implement autoscroll (#112)
hyusap Nov 8, 2023
9a4576d
✨ add multiline support (#118)
hyusap Nov 16, 2023
5ebe31c
♻️ refactor all of the api stuff (#119)
hyusap Nov 29, 2023
0035fed
✨ implement dark mode (#120)
hyusap Nov 29, 2023
a89527a
Documentation (#121)
VVoruganti Dec 8, 2023
986473f
Force redirect for unauthenticated and add posthog events (#122)
VVoruganti Dec 8, 2023
9c4445c
Main merge conflict
VVoruganti Dec 8, 2023
940dd2a
Update version
VVoruganti Dec 8, 2023
2d885c0
Static banner
VVoruganti Dec 8, 2023
15e649e
✨ caching and skeletons (#127)
hyusap Dec 12, 2023
a850d0e
Revert "✨ caching and skeletons (#127)"
VVoruganti Dec 12, 2023
3ae592e
Http error handling (#129)
jacobvm04 Dec 12, 2023
40c0a5a
✨ caching and skeletons 2 (#130)
hyusap Dec 12, 2023
417e1ae
Changelogs (#131)
VVoruganti Dec 12, 2023
19eecaf
Merge branch 'main' into staging
VVoruganti Dec 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
UI tweaks (#81)
* Remove anonymous honcho usage, fix opengraph

* Remove extra excess logging and comment

* I hate typescript
VVoruganti authored Sep 13, 2023
commit 2378e3d32eed0fa029446d4525781a16a59e9d73
2 changes: 1 addition & 1 deletion www/app/page.tsx
Original file line number Diff line number Diff line change
@@ -110,11 +110,11 @@ export default function Home() {
// TODO store anonymous chats in localstorage or cookies
if (userId !== "LOADING") {
newChat().then((conversation_id) => {
setCurrentConversation(conversation_id)
const newConversation: Conversation = {
name: "",
conversation_id
}
setCurrentConversation(newConversation)
setConversations(c => [...c, newConversation])
})
}