mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
* added scaffolding for auto-generating docs for integrations based on block definition, get rendering error for mdx pages * page renders, have to add more useful information * standardized tool naming convention, added script to autogenerate docs for integrations, added docs for each tool * re-generated docs, updated CONTRIBUTING.md to reflect new format * added a dedicated tools page * added additional information for tools, added manual section logic to docs producer * added a link back to sim studio, fixed z level issue on mobile, added better intro * updated script to more accurately reflect the params for each tool, as well as the overall blocks' output
10 lines
376 B
TypeScript
10 lines
376 B
TypeScript
import { answerTool } from './answer'
|
|
import { findSimilarLinksTool } from './find_similar_links'
|
|
import { getContentsTool } from './get_contents'
|
|
import { searchTool } from './search'
|
|
|
|
export const exaAnswerTool = answerTool
|
|
export const exaFindSimilarLinksTool = findSimilarLinksTool
|
|
export const exaGetContentsTool = getContentsTool
|
|
export const exaSearchTool = searchTool
|