Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- This repository contains the source code for the Agent UI monorepo, which is a collection of web apps designed to provide a UI for various agent-based functionalities.
- List of apps:
- [BabyDegen UI](apps/babydegen-ui/README.md).
- Predict UI (work in progress)
- [Predict UI](apps/predict-ui/README.md).
- [Agents.fun UI](apps/agentsfun-ui/README.md).

# Commands
Expand Down Expand Up @@ -36,4 +36,7 @@
- To clear the cache, use:
```bash
npx nx reset
```
```

## License
![MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
3 changes: 0 additions & 3 deletions apps/agentsfun-ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,3 @@ To mock, update the `IS_MOCK_ENABLED` in `.env` and the app will use the mock da
1. Bump the version in `package.json`
2. Push a new tag to the repository, (e.g., `v1.0.0-agentsfun`)
3. The CI will build and release the contents of the `dist/apps/agentsfun-ui` directory to a zip file.

## 🪪 License
![MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
12 changes: 6 additions & 6 deletions apps/agentsfun-ui/src/components/Persona.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ const Description: FC<{ content: string }> = ({ content }) => {
defaultExpanded: false,
symbol: (expanded) =>
expanded ? (
<>
Hide full description&nbsp;
<Flex align="center" gap={4}>
Hide full description
<UpOutlined style={{ fontSize: 12 }} />
</>
</Flex>
) : (
<>
Show full description&nbsp;
<Flex align="center" gap={4}>
Show full description
<DownOutlined style={{ fontSize: 12 }} />
</>
</Flex>
),
}}
className="mb-0"
Expand Down
3 changes: 0 additions & 3 deletions apps/babydegen-ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,3 @@ To mock, update the `IS_MOCK_ENABLED` in `config.ts` to `true` and the app will
- For modius, use suffix `-modius` (e.g., `v1.0.0-modius`)
- For optimus, use suffix `-optimus` (e.g., `v1.0.0-optimus`)
3. The CI will build and release the contents of the `dist/apps/babydegen-ui` directory to a zip file.

## 🪪 License
![MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
3 changes: 3 additions & 0 deletions apps/predict-ui/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Predict UI

React application for Predict UI, designed to be consumed by the agent and available in [Pearl](https://github.com/olas-operate-app).