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

UI screensense #51

Closed
wants to merge 49 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
c82023c
add electron app
sahilm-ti Jan 7, 2025
1cc0c73
add electron app
sahilm-ti Jan 7, 2025
48ff234
add graphing capabilities
sahilm-ti Jan 7, 2025
4fa52f3
Merge pull request #1 from trilogy-group/create-electron-app
sahilm-ti Jan 7, 2025
abf67e4
wip
sahilm-ti Jan 8, 2025
620eca5
Add building instructions
sahilm-ti Jan 8, 2025
395982d
Update readme
sahilm-ti Jan 8, 2025
1a57fad
Fix build code
sahilm-ti Jan 8, 2025
01d16bb
Cleanup
sahilm-ti Jan 8, 2025
3495030
allow user provided keys
sahilm-ti Jan 8, 2025
b8d186e
fix multi assistant
sahilm-ti Jan 8, 2025
7e44ea2
Add reconnection
sahilm-ti Jan 8, 2025
2b14053
minor change
sahilm-ti Jan 8, 2025
dbd2ccf
FIx dev tools bug and empty api key bug
sahilm-ti Jan 8, 2025
5b91c48
Fix subtitles issue
sahilm-ti Jan 9, 2025
e866755
Author tools (#3)
sahilm-ti Jan 9, 2025
5b2bd52
update assistants
sahilm-ti Jan 9, 2025
210c39c
rename app and add icons
sahilm-ti Jan 10, 2025
b4d6924
add comment explaining tool call workaround
sahilm-ti Jan 10, 2025
6398a33
fix icons issue for mac
sahilm-ti Jan 10, 2025
7aca802
Sign and notarise mac build
sahilm-ti Jan 10, 2025
7657e18
update prompts
sahilm-ti Jan 10, 2025
9232110
add back tool call workaround
sahilm-ti Jan 10, 2025
fdb4e57
update settings UI
sahilm-ti Jan 13, 2025
eb2078e
Two windows with full functionality but no agents in the second windo…
arnav-ti Jan 13, 2025
32e21a7
Added agents to the UI
arnav-ti Jan 13, 2025
0c110ec
Small changes to beautify the UI
arnav-ti Jan 13, 2025
5a9047e
add posthog analytics
sahilm-ti Jan 13, 2025
e0b0525
remove analytics on dev
sahilm-ti Jan 13, 2025
fda6134
tune prompts
sahilm-ti Jan 13, 2025
af43783
merge UI changes to main
sahilm-ti Jan 13, 2025
ab828d3
fix UI issue with larger window
sahilm-ti Jan 13, 2025
5d59156
remove display options for other modes
sahilm-ti Jan 13, 2025
8e64034
close open stuff on session termination
sahilm-ti Jan 13, 2025
bcd5049
The main window is shown only when required
arnav-ti Jan 13, 2025
429f114
fix screen share issue
sahilm-ti Jan 13, 2025
95723ff
fix picker cancellation not working correctly
sahilm-ti Jan 13, 2025
6f87318
workaround for initial mode bug
sahilm-ti Jan 13, 2025
a31852a
fix default mode bug
sahilm-ti Jan 14, 2025
ceb9c72
add explicit permissions for accessibility
sahilm-ti Jan 14, 2025
e06332b
Minor changes
arnav-ti Jan 14, 2025
a2a9d75
Added first prompt
arnav-ti Jan 14, 2025
d302470
Resolving Conflicts with tutor
arnav-ti Jan 14, 2025
eb91173
add empty api key detection
sahilm-ti Jan 14, 2025
e453045
remove unused code
sahilm-ti Jan 14, 2025
0dcfb75
fix ghosting issue
sahilm-ti Jan 14, 2025
d646d1f
add error handling
sahilm-ti Jan 14, 2025
0a81cc0
log tool usage
sahilm-ti Jan 14, 2025
787a17c
add extra logs
sahilm-ti Jan 14, 2025
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
remove analytics on dev
sahilm-ti committed Jan 13, 2025

Unverified

This user has not yet uploaded their public signing key.
commit e0b0525118e262018e5b74c3344cc7586353f5d6
2 changes: 1 addition & 1 deletion src/configs/analytics.ts
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ declare global {
// Initialize PostHog
export const initAnalytics = () => {
// Only initialize in production
if (process.env.NODE_ENV === 'production' || true) {
if (process.env.NODE_ENV === 'production') {
console.log("initializing analytics");
posthog.init(
process.env.REACT_APP_POSTHOG_KEY || 'your-project-key',