mirror of
https://github.com/langchain-ai/create-agent-chat-app.git
synced 2026-07-01 21:24:02 -04:00
14 lines
411 B
TypeScript
14 lines
411 B
TypeScript
// This file serves as the main entry point for the project
|
|
// When building the project, the code for the CLI lives in
|
|
// src/create-langgraph-chat-app/
|
|
|
|
/**
|
|
* The create-langgraph-chat-app CLI
|
|
* This package provides a command-line interface for creating a new LangGraph chat application
|
|
*
|
|
* @packageDocumentation
|
|
*/
|
|
|
|
// Re-export CLI functionality
|
|
export * from './create-langgraph-chat-app/index.js';
|