Teste os modelos do Gemini 1.5, os modelos multimodais mais recentes na Vertex AI, e veja o que é possível criar com uma janela de contexto de até 2 milhões de tokens.
Teste os modelos do Gemini 1.5, os modelos multimodais mais recentes na Vertex AI, e veja o que é possível criar com uma janela de contexto de até 2 milhões de tokens.
Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Gerar uma função Python com base na docstring
É possível consultar um modelo diretamente e testar os resultados retornados ao usar
diferentes valores de parâmetros com o console do Cloud ou ao chamar a
API Vertex AI diretamente.
fromcollectionsimportnamedtuplefrommathimportsqrt# A point has an x and a y coordinatePoint=namedtuple('Point','x y')# A triangle is defined by three pointsTriangle=namedtuple('Triangle','a b c')defdistance(p,q):"""Returns the distance between the provided pair of points"""returnsqrt((p.x-q.x)**2+(p.y-q.y)**2)defperimeter(triangle):"""Returns the perimeter of the provided triangle"""returndistance(triangle.a,triangle.b)+distance(triangle.b,triangle.c)+distance(triangle.c,triangle.a)defarea(triangle):"""Returns the area of the provided triangle using Heron's formula"""
Escreva o corpo da função de área, seguindo a respectiva docstring.
Resposta
fromcollectionsimportnamedtuplefrommathimportsqrt# A point has an x and a y coordinatePoint=namedtuple('Point','x y')# A triangle is defined by three pointsTriangle=namedtuple('Triangle','a b c')defdistance(p,q):"""Returns the distance between the provided pair of points"""returnsqrt((p.x-q.x)**2+(p.y-q.y)**2)defperimeter(triangle):"""Returns the perimeter of the provided triangle"""returndistance(triangle.a,triangle.b)+distance(triangle.b,triangle.c)+distance(triangle.c,triangle.a)defarea(triangle):"""Returns the area of the provided triangle using Heron's formula"""s=perimeter(triangle)/2returnsqrt(s*(s-distance(triangle.a,triangle.b))*(s-distance(triangle.b,triangle.c))*(s-distance(triangle.c,triangle.a)))
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 2024-05-28 UTC."],[],[]]