# Show GN: Ailoy: 쉬운 on-device AI agent 제작 도구

> Clean Markdown view of GeekNews topic #21312. Use the original source for factual precision when an external source URL is present.

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=21312](https://news.hada.io/topic?id=21312)
- GeekNews Markdown: [https://news.hada.io/topic/21312.md](https://news.hada.io/topic/21312.md)
- Type: show
- Author: [bmrcreative90](https://news.hada.io/@bmrcreative90)
- Published: 2025-06-06T23:24:47+09:00
- Updated: 2025-06-06T23:24:47+09:00
- Original source: [github.com/brekkylab](https://github.com/brekkylab/ailoy)
- Points: 13
- Comments: 4

## Summary

**ailoy**는 **LLM agent**를 누구나 쉽게 제작할 수 있도록 지원하는 오픈소스 라이브러리입니다. **Python**과 **Javascript(Node)**에서 모두 사용 가능하며, 별도의 **머신러닝** 전문 지식 없이도 직접 **on-device AI**를 구현할 수 있습니다. 이 도구는 외부 API 의존도를 줄여 **비용 절감**에 중점을 두고, 개발자 커뮤니티에서의 **지원**도 적극적으로 제공합니다.

## Topic Body

ailoy라고, LLM agent를 쉽게 만들어주는 라이브러리입니다.  
  
python / javacript(node) 두가지 버전이고, 현존하는 툴들 중에 제일 쉽다고 자부합니다.  
  
머신러닝 전문가 아니어도 만들 수 있는 것이 장점입니다.  
  
구글 오픈ai 앤트로픽 다 결국 api를 많이 쓰게 하려다보니, 돈먹는 하마인 것 같아서 on-device AI로 agent를 돌릴 수 있도록 만들어 봤습니다.  
  
깃헙 디스코드 링크로 오시면 막히는 점 도와드리겠습니다. 한번 써보시고 의견 남겨주시면 감사하겠습니다!

## Comments



### Comment 39857

- Author: netcleaner
- Created: 2025-06-09T09:31:33+09:00
- Points: 1

모델 사이즈가 작은데 체감 성능이 어느정도인지 궁금하네요.

### Comment 39873

- Author: bmrcreative90
- Created: 2025-06-09T12:44:33+09:00
- Points: 1
- Parent comment: 39857
- Depth: 1

확실히 gpt 시리즈라던지 deepseek r1에 비해서는 아쉬운 느낌이 있습니다. 30B 모델은 확실히 괜찮은데 이쪽은 on-device로 하려면 5090정도 되는 GPU가 있어야된다는 단점이 있구요....  
  
그래서 openai 모델이랑 비슷한 성능을 내면서 토큰 최적화를 하려면 openai를 사용하면서 쉬운 태스크는 local model을 사용하는 하이브리드 방식이 제일 좋은 것 같습니다.

### Comment 39876

- Author: bmrcreative90
- Created: 2025-06-09T13:32:45+09:00
- Points: 1
- Parent comment: 39873
- Depth: 2

그래도 못쓸 정도는 아니고, 복잡한 태스크가 아니라 번역, 요약 정도는 그렇게 큰 차이가 없다는 느낌이긴 합니다... ㅎㅎ

### Comment 39885

- Author: netcleaner
- Created: 2025-06-09T15:25:47+09:00
- Points: 1
- Parent comment: 39876
- Depth: 3

그렇군요^^ 답변감사합니다
