Skip to content

Commit

Permalink
Beta property and terms (#14151)
Browse files Browse the repository at this point in the history
  • Loading branch information
craigsdennis authored Apr 19, 2024
1 parent 00a4e8c commit 5ca6ae0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion content/workers-ai/models/llama-3-8b-instruct.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,16 @@ model:
description: "Family of generative text models, such as large language models (LLM), that can be adapted for a variety of natural language tasks."
tags: []
properties:
- property_id: "beta"
value: "true"
- property_id: "info"
value: "https://llama.meta.com"
- property_id: "terms"
value: "https://llama.meta.com/llama3/license/#"
task_type: "text-generation"
model_display_name: "llama-3-8b-instruct"
layout: "model"
weight: 100
weight: 0
title: "llama-3-8b-instruct"
json_schema:
input: "{\n \"type\": \"object\",\n \"oneOf\": [\n {\n \"properties\": {\n \"prompt\": {\n \"type\": \"string\",\n \"maxLength\": 4096\n },\n \"raw\": {\n \"type\": \"boolean\",\n \"default\": false\n },\n \"stream\": {\n \"type\": \"boolean\",\n \"default\": false\n },\n \"max_tokens\": {\n \"type\": \"integer\",\n \"default\": 256\n }\n },\n \"required\": [\n \"prompt\"\n ]\n },\n {\n \"properties\": {\n \"messages\": {\n \"type\": \"array\",\n \"items\": {\n \"type\": \"object\",\n \"properties\": {\n \"role\": {\n \"type\": \"string\"\n },\n \"content\": {\n \"type\": \"string\",\n \"maxLength\": 4096\n }\n },\n \"required\": [\n \"role\",\n \"content\"\n ]\n }\n },\n \"stream\": {\n \"type\": \"boolean\",\n \"default\": false\n },\n \"max_tokens\": {\n \"type\": \"integer\",\n \"default\": 256\n }\n },\n \"required\": [\n \"messages\"\n ]\n }\n ]\n}"
Expand Down

0 comments on commit 5ca6ae0

Please sign in to comment.