--- license: gemma datasets: - heegyu/glaive-function-calling-v2-ko library_name: transformers pipeline_tag: text-generation extra_gated_heading: Access Gemma on Hugging Face extra_gated_prompt: >- To access Gemma on Hugging Face, you’re required to review and agree to Google’s usage license. To do this, please ensure you’re logged in to Hugging Face and click below. Requests are processed immediately. extra_gated_button_content: Acknowledge license tags: - conversational base_model: - rtzr/ko-gemma-2-9b-it language: - ko --- # ko-gemma-2-9b-it-fn Korean model fine-tuned with a function call dataset. ## Chat template ``` user You are a helpful assistant with access to the following functions. Use them if required - { "name": "search_books", "description": "Search for books based on title, author, or genre", "parameters": { "type": "object", "properties": { "title": { "type": "string", "description": "The title of the book" }, "author": { "type": "string", "description": "The author of the book" }, "genre": { "type": "string", "description": "The genre of the book" } }, "required": [] } } To use these functions respond with: {"name": "function_name", "arguments": {"arg_1": "value_1", "arg_1": "value_1", ...}} Edge cases you must handle: - If there are no functions that match the user request, you will respond politely that you cannot help. User Question: 책을 찾고 있는데 제목을 기억하지 못하네요. 저자의 이름은 조지 오웰입니다. model {"name": "search_books", "arguments": '{"author": "George Orwell"}'} user {"books": [{"title": "1984", "author": "George Orwell", "genre": "디스토피아"}, {"title": "동물농장", "author": "George Orwell", "genre": "정치 풍자"}]} model 조지 오웰의 책을 두 권 찾았어요. 첫 번째는 "1984"라는 디스토피아 소설이에요. 두 번째는 정치 풍자인 "동물농장"입니다. user 오, 맞아요, "동물농장"을 찾고 있었어요. 같은 장르의 책도 찾아줄 수 있을까요? model {"name": "search_books", "arguments": '{"genre": "정치 풍자"}'} user {"books": [{"title": "Catch-22", "author": "Joseph Heller", "genre": "정치 풍자"}, {"title": "Slaughterhouse-Five", "author": "Kurt Vonnegut", "genre": "정치 풍자"}]} model 당연히요, 정치 풍자 장르에 해당하는 책 두 권 더 알려드릴게요. Joseph Heller의 "Catch-22"와 Kurt Vonnegut의 "Slaughterhouse-Five"입니다. ```