# Jina AI Reader - URL을 LLM 친화적인 입력으로 바꿔주는 도구

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

## Metadata

- GeekNews HTML: [https://news.hada.io/topic?id=14498](https://news.hada.io/topic?id=14498)
- GeekNews Markdown: [https://news.hada.io/topic/14498.md](https://news.hada.io/topic/14498.md)
- Type: news
- Author: [xguru](https://news.hada.io/@xguru)
- Published: 2024-04-25T10:10:01+09:00
- Updated: 2024-04-25T10:10:01+09:00
- Original source: [github.com/jina-ai](https://github.com/jina-ai/reader)
- Points: 15
- Comments: 4

## Topic Body

- URL의 내용을 읽어서 LLM에 입력하기 좋은 형태로 만들어주는 오픈소스   
- `https://r.jina.ai/https://news.hada.io` 처럼 Prefix 를 붙여서 쉽게 이용 가능 (무료 사용)  
- 모든 이미지를 읽어서 `Image [idx]: [caption]` 형태의 설명도 붙여줌   
- 스탠다드/스트리밍/JSON 세가지 모드로 사용 가능   
- 헤더를 추가로 보내서 추가 기능 이용   
  - `x-respond-with: html` : `documentElement.outerHTML` 리턴   
  - `x-respond-with: text` : `document.body.innerText` 리턴   
  - `x-respond-with: screenshot` : 웹페이지 스크린샷 URL을 리턴   
  - 기본 값은 `x-respond-with: markdown`

## Comments



### Comment 26097

- Author: humblebee
- Created: 2024-06-10T12:16:18+09:00
- Points: 1

한 달 동안 특정 URL의 컨텐츠를 GPT에 전달해야하는 상황에서, 내부 브라우저를 사용하는 GPT 에이전트보다 jina를 통해 내용을 직접 전달하는 편이 훨씬 더 효과적이고 똑똑하게 처리된다는 느낌을 받았습니다. 매번 URL을 직접 입력하고 처리하는 게 번거로워 Mac의 컨텍스트 메뉴(오른쪽 클릭 메뉴)에 Automator를 통해 사용자 정의 서비스를 등록하고 사용 중인데, 이 방법이 매우 편리합니다. 작성한 스크립트를 공유하니 참고 필요하시다면 사용해보세요. 해당 스크립트를 등록하면 브라우저 URL에서 오른쪽 클릭 후 서비스 항목에서 바로 선택할 수 있습니다.  
  
```  
on run {input, parameters}  
	try  
		set selectedURL to item 1 of input  
		set finalURL to "https://r.jina.ai/" & selectedURL  
		  
		tell application "System Events"  
			open location finalURL  
		end tell  
	on error errMsg  
		display dialog "Error: " & errMsg  
	end try  
	return input  
end run  
```  
  
원래는 SpotLight에 등록하고 싶었는데, SpotLight는 커스터마이징을 지원하지 않는듯 해서 그냥 이렇게 만들었습니다.

### Comment 26098

- Author: xguru
- Created: 2024-06-10T12:26:28+09:00
- Points: 2
- Parent comment: 26097
- Depth: 1

저는 북마클릿에 넣어서 이용합니다.   
  
javascript:(function()%7Bwindow.location.href %3D "https%3A%2F%2Fr.jina.ai%2F" %2B document.URL %3B%7D)()%3B

### Comment 24687

- Author: kandk
- Created: 2024-04-25T11:42:09+09:00
- Points: 1

wow

### Comment 53304

- Author: bskim
- Created: 2026-03-18T18:15:00+09:00
- Points: 1

Mac Shortcut으로 만들어봤습니다.  
URL을 선택하고 우클릭 - Services에서 사용할 수 있습니다.  
  
https://www.icloud.com/shortcuts/284409fe6eb14875a8a926b24e4e04d6
