nano bots spec
Nano Bots 3.2.0
Midjourney에서 특화된 나노 봇이 생성 한 프롬프트를 통해 Midjourney가 인위적으로 만든 이미지.
나노 봇 은 모든 프로그래밍 언어로 구현할 수있는 공개 사양입니다. 단일 가벼운 파일로 쉽게 공유 할 수있는 작고 전문화 된 AI 구동 봇을 생성하기위한 사람이 읽을 수있는 지침이있는 구성 파일을 지정합니다.
이 사양의 구현 :
나노 봇 카트리지의 모습은 다음과 같습니다.
---
meta :
symbol : ?
name : Nano Bot Name
author : Your Name
version : 1.0.0
license : CC0-1.0
description : A helpful assistant.
behaviors :
interaction :
directive : You are a helpful assistant.
provider :
id : openai
credentials :
address : ENV/OPENAI_API_ADDRESS
access-token : ENV/OPENAI_API_KEY
settings :
user : ENV/NANO_BOTS_END_USER
model : gpt-4o다음은 나노 봇의 완전 기능적인 구현이 다음과 같은 느낌입니다.
nb - - eval " hello "
# => Hello! How may I assist you today?
nb to-en-us-translator.yml - eval " Salut, comment ça va? "
# => Hello, how are you doing?
nb midjourney.yml - eval " happy cyberpunk robot "
# => A cheerful and fun-loving robot is dancing wildly amidst a
# futuristic and lively cityscape. Holographic advertisements
# and vibrant neon colors can be seen in the background.
nb lisp.yml - eval " (+ 1 2) "
# => 3
cat article.txt |
nb to-en-us-translator.yml - eval |
nb summarizer.yml - eval
# -> LLM stands for Large Language Model, which refers to an
# artificial intelligence algorithm capable of processing
# and understanding vast amounts of natural language data,
# allowing it to generate human-like responses and perform
# a range of language-related tasks. nb - - repl
nb assistant.yml - repl ?> Hi, how are you doing?
As an AI language model, I do not experience emotions but I am functioning
well. How can I assist you?
?> |
나노 봇은 도구 (함수)로 전원을 공급할 수 있습니다.
---
tools :
- name : random-number
description : Generates a random number between 1 and 100.
fennel : |
(math.random 1 100) ?> please generate a random number
random-number {} [yN] y
random-number {}
59
The randomly generated number is 59.
?> |
나노 봇의 전체 사양을 확인하십시오 : https://spec.nbots.io