alexbj75-movierecommendator
- Description:
Discover new films effortlessly! Enter a movie name and get two personalized recommendations powered by OpenAI. Transform your movie nights with Movie Recommender’s smart suggestions. Try it now!
- Copyright:
- 2025 Eyevinn Technology AB
Methods
(async, static) createAlexbj75MovierecommendatorInstance(context, body) → {Alexbj75Movierecommendator}
- Description:
Create a new movierecommendator instance
Example
import { Context } from '@osaas/client-core';
import { createAlexbj75MovierecommendatorInstance } from '@osaas/client-services';
const ctx = new Context();
const body: Alexbj75MovierecommendatorConfig = { name: 'myinstance', ... };
const instance = await createAlexbj75MovierecommendatorInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
Alexbj75MovierecommendatorConfig | Service instance configuration |
Returns:
- Service instance
(async, static) getAlexbj75MovierecommendatorInstance(context, name) → {Alexbj75Movierecommendator}
- Description:
Get a movierecommendator instance
Example
import { Context } from '@osaas/client-core';
import { getAlexbj75MovierecommendatorInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getAlexbj75MovierecommendatorInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the movierecommendator to be retrieved |
Returns:
- Service instance
(async, static) removeAlexbj75MovierecommendatorInstance(context, name)
- Description:
Remove a movierecommendator instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the movierecommendator to be removed |