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

fix: Rename agentid prop to agentId #118

Merged
merged 1 commit into from
Mar 11, 2025
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export default function Chat() {

return (
<BitteAiChat
agentid="your-agent-id"
agentId="your-agent-id"
apiUrl="/api/chat"
wallet={{ near: { wallet } }}
/>
Expand All @@ -115,7 +115,7 @@ export default function Chat() {
import { Account } from "near-api-js";
// get near account instance from near-api-js by instantiating a keypair
<BitteAiChat
agentid="your-agent-id"
agentId="your-agent-id"
apiUrl="/api/chat"
wallet={{ near: { account: nearAccount } }}
/>
Expand All @@ -135,7 +135,7 @@ export default function Chat() {

return (
<BitteAiChat
agentid="your-agent-id"
agentId="your-agent-id"
apiUrl="/api/chat"
wallet={{
evm: {
Expand Down Expand Up @@ -216,7 +216,7 @@ export const GET = async (req: NextRequest): Promise<NextResponse> => {

```typescript
interface BitteAiChatProps {
agentid: string; // ID of the AI agent to use
agentId: string; // ID of the AI agent to use
apiUrl: string; // Your API route path (e.g., "/api/chat")
historyApiUrl?: string; // Your history API route to keep context when signing transactions
wallet?: WalletOptions; // Wallet configuration
Expand Down
2 changes: 1 addition & 1 deletion src/types/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export interface BitteAiChatOptions {

/**
* Props for the BitteAiChat component
* @param agentid - ID of the AI agent to use for chat interactions
* @param agentId - ID of the AI agent to use for chat interactions
* @param apiUrl - Internal API URL for chat communication (e.g. api/chat).
* Used to proxy requests to bitte api to not expose api key.
* @param options - Your Chat Options
Expand Down