-
Notifications
You must be signed in to change notification settings - Fork 5
feat: Optimus agent #884
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
feat: Optimus agent #884
Changes from 61 commits
97ff826
8692273
ed34554
4390950
b595ddd
9d45e10
154ed2e
b85354f
c982725
c36abcc
df764f1
dc41039
4802676
d35aca0
d8bdaee
a903c00
1e9b6f9
f444216
b9e9274
5bfb8ae
08a4cb7
9e7993e
b7a12c1
1ce38a9
ea734f6
520cbb4
a9b58bd
c94a69e
98776d5
7ada98c
54fb16a
cdc96e9
7cbd786
190eb0b
5351389
2bb0f30
339abc6
c51c2ac
86b6f36
c2171c9
bdc8ea6
4288415
3c48217
b909c31
1220fe7
b51f111
2d06d8e
e665ae9
9fce7a5
137de07
08e1df2
d49834f
b2a43f0
6800e2b
30bea96
8a22bc2
1a76d32
a61f603
210127c
e2cc024
e21b82b
a1bde30
a22e52e
55a2795
b687179
f3d813b
d57bb12
f69ee59
bade9a4
1a1683c
a700e8b
7bd89b6
c600925
57ca061
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 |
---|---|---|
|
@@ -51,4 +51,5 @@ leak_report | |
*.log | ||
|
||
# custom script for development | ||
.scripts/ | ||
custom-script.sh |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,7 +25,7 @@ export const TenderlyAccessTokenLabel = () => ( | |
<Paragraph className="text-sm m-0"> | ||
To locate your personal access token: | ||
</Paragraph> | ||
<ol className="pl-16 text-sm"> | ||
<ol className="pl-16 text-sm mb-4"> | ||
<li> | ||
<Text className="text-sm"> | ||
Connect to{' '} | ||
|
@@ -136,3 +136,22 @@ export const ModiusGeminiApiKeyLabel = () => ( | |
</Text> | ||
</Flex> | ||
); | ||
|
||
export const OptimusGeminiApiKeyLabel = () => ( | ||
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. it's a copy paste of ModiusGeminiApiKeyLabel. maybe we can either do one components with a prop = 'Optimus' | 'Modius' or just say in the description 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.
|
||
<Flex align="center" gap={6}> | ||
<Text>Gemini API key</Text> | ||
<InfoTooltip placement="bottom" overlayInnerStyle={TOOLTIP_STYLE}> | ||
<Paragraph className="text-sm m-0"> | ||
The Gemini API key allows you to chat with your agent and update its | ||
goals through Optimus’ profile. You can generate one for free on{' '} | ||
<a target="_blank" href={GEMINI_API_URL}> | ||
Google AI Studio | ||
</a> | ||
. | ||
</Paragraph> | ||
</InfoTooltip> | ||
<Text type="secondary" className="text-sm"> | ||
(Optional) | ||
</Text> | ||
</Flex> | ||
); |
Uh oh!
There was an error while loading. Please reload this page.