@mastra/core 0.1.23 → 0.1.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5912,18 +5912,18 @@ if (process.env.OPENAI_API_KEY) {
5912
5912
  function createAssistantAgentHandler(logger) {
5913
5913
  return /*#__PURE__*/function () {
5914
5914
  var _createAssistantAgent = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee(_ref) {
5915
- var name, instructions, model, tools, response_format, assistant;
5915
+ var name, instructions, model, tools, assistant;
5916
5916
  return _regeneratorRuntime().wrap(function _callee$(_context) {
5917
5917
  while (1) switch (_context.prev = _context.next) {
5918
5918
  case 0:
5919
- name = _ref.name, instructions = _ref.instructions, model = _ref.model, tools = _ref.tools, response_format = _ref.response_format;
5919
+ name = _ref.name, instructions = _ref.instructions, model = _ref.model, tools = _ref.tools;
5920
5920
  _context.next = 3;
5921
5921
  return client.beta.assistants.create({
5922
5922
  name: name,
5923
5923
  model: model,
5924
5924
  instructions: instructions,
5925
- tools: tools,
5926
- response_format: response_format
5925
+ tools: tools
5926
+ //response_format,
5927
5927
  });
5928
5928
  case 3:
5929
5929
  assistant = _context.sent;
@@ -5968,8 +5968,8 @@ function updateAssistantAgentHandler(logger) {
5968
5968
  name: name,
5969
5969
  model: model,
5970
5970
  instructions: instructions,
5971
- tools: tools,
5972
- response_format: response_format
5971
+ tools: tools
5972
+ //response_format,
5973
5973
  });
5974
5974
  case 4:
5975
5975
  assistant = _context2.sent;