pull/719/head
Travis Fischer 2025-07-02 15:32:25 -05:00
rodzic b33bf065b0
commit 597ca3ead3
3 zmienionych plików z 11 dodań i 8 usunięć

Wyświetl plik

@ -10,12 +10,12 @@ export function PublicProject({ project }: { project: Project }) {
return ( return (
<Link <Link
key={project.id} key={project.id}
className='p-2 border rounded-lg hover:border-gray-400 className='p-3 border rounded-lg hover:border-gray-400
divide-y divide-gray-200 overflow-hidden bg-white shadow-sm max-w-md flex flex-col gap-2 divide-y divide-gray-200 overflow-hidden bg-white shadow-sm max-w-md flex flex-col gap-3
' '
href={`/marketplace/projects/${project.identifier}`} href={`/marketplace/projects/${project.identifier}`}
> >
<div className='p-2 flex gap-2.5 items-center'> <div className='pb-3 flex gap-2.5 items-center'>
<img <img
src={ src={
deployment.iconUrl || deployment.iconUrl ||
@ -35,13 +35,15 @@ export function PublicProject({ project }: { project: Project }) {
</div> </div>
</div> </div>
<div className='flex-1 flex flex-col gap-2 justify-between'> <div className='flex-1 flex flex-col gap-3 justify-between'>
{deployment.description && ( {deployment.description && (
<p className='text-sm text-gray-700'>{deployment.description}</p> <p className='text-sm text-gray-700 line-clamp-4'>
{deployment.description}
</p>
)} )}
{project.lastPublishedDeployment && ( {project.lastPublishedDeployment && (
<div className='text-xs text-gray-500 flex items-center justify-between'> <div className='text-xs text-gray-500 flex gap-3 items-center justify-between'>
<div>{deployment.version}</div> <div>{deployment.version}</div>
<div> <div>

Wyświetl plik

@ -55,7 +55,8 @@ export class OpenMeteoClient extends AIFunctionsProvider {
} }
/** /**
* Gets the 7-day weather variables in hourly and daily resolution for given WGS84 latitude and longitude coordinates. Available worldwide. * Gets the 7-day weather variables in hourly and daily resolution for given
* WGS84 latitude and longitude coordinates. Available worldwide.
*/ */
@aiFunction({ @aiFunction({
name: 'open_meteo_get_forecast', name: 'open_meteo_get_forecast',

Wyświetl plik

@ -146,7 +146,7 @@ export class TavilyClient extends AIFunctionsProvider {
* Searches the web for pages relevant to the given query and summarizes the results. * Searches the web for pages relevant to the given query and summarizes the results.
*/ */
@aiFunction({ @aiFunction({
name: 'tavily_web_search', name: 'search',
description: description:
'Searches the web to find the most relevant pages for a given query and summarizes the results. Very useful for finding up-to-date news and information about any topic.', 'Searches the web to find the most relevant pages for a given query and summarizes the results. Very useful for finding up-to-date news and information about any topic.',
inputSchema: z.object({ inputSchema: z.object({