Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
608 changes: 0 additions & 608 deletions api-reference/messaging/sessions-api-reference.mdx

This file was deleted.

47 changes: 23 additions & 24 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"runtime/models",
"runtime/services",
"runtime/messaging",
"runtime/sessions"
"runtime/sessions-api"
]
}
]
Expand Down Expand Up @@ -123,7 +123,7 @@
]
},
{
"group": "Messaging",
"group": "MESSAGING",
"pages": [
"api-reference/messaging/create-server",
"api-reference/messaging/create-channel",
Expand All @@ -140,22 +140,6 @@
"api-reference/messaging/delete-channel-message",
"api-reference/messaging/delete-all-channel-messages",
"api-reference/messaging/delete-all-channel-messages-by-user",
{
"group": "Sessions API",
"pages": [
"api-reference/messaging/sessions-api-reference",
"api-reference/messaging/create-session",
"api-reference/messaging/get-session",
"api-reference/messaging/send-session-message",
"api-reference/messaging/get-session-messages",
"api-reference/messaging/renew-session",
"api-reference/messaging/update-session-timeout",
"api-reference/messaging/session-heartbeat",
"api-reference/messaging/end-session",
"api-reference/messaging/list-sessions",
"api-reference/messaging/sessions-health-check"
]
},
"api-reference/messaging/add-agent-to-server",
"api-reference/messaging/add-agent-to-channel",
"api-reference/messaging/remove-agent-from-server",
Expand All @@ -170,7 +154,22 @@
]
},
{
"group": "Memory",
"group": "SESSIONS API",
"pages": [
"api-reference/messaging/create-session",
"api-reference/messaging/get-session",
"api-reference/messaging/send-session-message",
"api-reference/messaging/get-session-messages",
"api-reference/messaging/renew-session",
"api-reference/messaging/update-session-timeout",
"api-reference/messaging/session-heartbeat",
"api-reference/messaging/end-session",
"api-reference/messaging/list-sessions",
"api-reference/messaging/sessions-health-check"
]
},
{
"group": "MEMORY",
"pages": [
"api-reference/memory/get-agent-memories",
"api-reference/memory/get-room-memories",
Expand All @@ -181,7 +180,7 @@
]
},
{
"group": "Rooms",
"group": "ROOMS",
"pages": [
"api-reference/rooms/create-a-room",
"api-reference/rooms/get-room-details",
Expand All @@ -191,14 +190,14 @@
]
},
{
"group": "Media",
"group": "MEDIA",
"pages": [
"api-reference/media/upload-media-for-agent",
"api-reference/media/upload-media-to-channel"
]
},
{
"group": "Logs",
"group": "LOGS",
"pages": [
"api-reference/logs/get-agent-logs",
"api-reference/logs/get-system-logs",
Expand All @@ -208,7 +207,7 @@
]
},
{
"group": "System",
"group": "SYSTEM",
"pages": [
"api-reference/system/basic-health-check",
"api-reference/system/health-check-endpoint",
Expand All @@ -222,7 +221,7 @@
]
},
{
"group": "WebSocket",
"group": "WEBSOCKET",
"pages": ["api-reference/websocket/socketio-real-time-connection"]
}
]
Expand Down
4 changes: 0 additions & 4 deletions installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,3 @@ You should see the version number of the installed CLI.
- Windows: Run Git Bash as Administrator
</Accordion>
</AccordionGroup>

## Next Steps

Continue to the [Quickstart](/quickstart) to build and run your first project in a few commands.
19 changes: 1 addition & 18 deletions quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -110,21 +110,4 @@ Let's create a project with our default Eliza character that can chat and take a
```
- Follow the Quickstart steps again carefully
</Accordion>
</AccordionGroup>

## What's Next?

<CardGroup cols={2}>
<Card title="Customize an Agent" icon="palette" href="/guides/customize-an-agent">
Learn how to modify your agent's personality, add knowledge, and configure settings
</Card>
<Card title="Add Multiple Agents" icon="users" href="/guides/add-multiple-agents">
Create projects with multiple agents working together
</Card>
<Card title="Test a Project" icon="flask" href="/guides/test-a-project">
Learn how to test your elizaOS agents and plugins
</Card>
<Card title="Deploy a Project" icon="rocket" href="/guides/deploy-a-project">
Ready to go live? Learn how to deploy your elizaOS agent to production
</Card>
</CardGroup>
</AccordionGroup>
2 changes: 1 addition & 1 deletion runtime/messaging.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ class SocketIOService extends Service {
## What's Next?

<CardGroup cols={2}>
<Card title="Sessions" icon="comments" href="/runtime/sessions">
<Card title="Sessions API" icon="comments" href="/runtime/sessions-api">
Build persistent conversations on messaging
</Card>

Expand Down
2 changes: 1 addition & 1 deletion runtime/models.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ async function modelCallWithFallback(
Stream model responses in real-time
</Card>

<Card title="Sessions" icon="comments" href="/runtime/sessions">
<Card title="Sessions API" icon="comments" href="/runtime/sessions-api">
Use models in conversations
</Card>

Expand Down
2 changes: 1 addition & 1 deletion runtime/providers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ async function debugComposeState(runtime: IAgentRuntime, message: Memory, includ
Real-time provider updates
</Card>

<Card title="Sessions" icon="comments" href="/runtime/sessions">
<Card title="Sessions API" icon="comments" href="/runtime/sessions-api">
See providers in conversational context
</Card>
</CardGroup>
2 changes: 1 addition & 1 deletion runtime/services.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ it('should notify through multiple channels', async () => {
Build real-time messaging services
</Card>

<Card title="Sessions" icon="comments" href="/runtime/sessions">
<Card title="Sessions API" icon="comments" href="/runtime/sessions-api">
Manage stateful conversations
</Card>

Expand Down
Loading