This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { z } from "zod"; | |
| // Section 1: Project | |
| export const section1Schema = z.object({ | |
| projectType: z.enum(["agent", "research", "dao", "infra", "other"]), | |
| projectName: z.string().min(2, "Project name must be at least 2 characters"), | |
| oneLiner: z.string().min(10, "One liner must be at least 10 characters"), | |
| leadName: z.string().min(2, "Lead name must be at least 2 characters"), | |
| email: z.string().email("Please provide a valid email address"), | |
| primaryProfileUrl: z.string().url("Please provide a valid URL"), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { | |
| Action, | |
| IAgentRuntime, | |
| logger, | |
| Memory, | |
| State, | |
| HandlerCallback, | |
| ModelType, | |
| } from '@elizaos/core'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import type { Character } from '@elizaos/core'; | |
| import dotenv from 'dotenv'; | |
| dotenv.config({ path: '../../.env' }); | |
| /** | |
| * Digital incarnation of Dr Aubrey de Grey – British, optimistic, deeply technical, and relentlessly action‑oriented. | |
| */ | |
| export const character: Character = { | |
| name: 'AubreyAi', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { type Character, ModelProviderName } from "@elizaos/core"; | |
| export const defaultCharacter: Character = { | |
| name: "Eliza", | |
| username: "eliza", | |
| plugins: [], | |
| modelProvider: ModelProviderName.TOGETHER, | |
| settings: { | |
| secrets: {}, | |
| voice: { |